AtCoder ABC344 A-E题解

传送门:ABC344

咕了一个周的题解。省流:D>E+不可以总司令专场 ohhhhhhhhhhhhhhhhhhhhhhhhhh

Problem A:

善用STL。

#include 
using namespace std;
int main(){
	string S;
	cin>>S;
	int i=S.find('|');j=S.find('|',i+1);
	cout<

Problem B:

依旧签到。

#include 
using namespace std;
int main(){
    vector A;
    while(true){
        int a;
     

你可能感兴趣的:(#,AtCoder题解,题解)