Codeforces Round #751 (Div. 2)

传送门:https://codeforces.com/contest/1602
A. Two Subsequences
思路分析:

模拟就行!

代码实现:
int main(){
int t;
cin>>t;
while (t--) {
string s;
cin>>s;
s=" "+s;
char m=s[1];
int id=1;
for(int i=2;i

Codeforces Round #751 (Div. 2)最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/5268.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>