ABC372 的题解没写是因为 D 是单调栈我不会(⊙︿⊙) 比赛链接:ABC373 总结:wssb。听说 E 很水?有时间我看看。 Problem A: Code #include <bits/stdc++.h> using namespace std; int mian(){ int ans=0; for(int i=1;i<=12;i++){ string S; cin>>S; if(S.size()==i) ans++; } cout<<ans<<endl; return 0; }