0
点赞
收藏
分享

微信扫一扫

第55期:Codeforces-Round #776 (Div. 3)

八怪不姓丑 2022-03-15 阅读 50
算法

A. Deletions of Two Adjacent Letters

tags:   implementation    strings 

solution:

code:

#include<bits/stdc++.h>
using namespace std;
int main(){
	int t;cin>>t;
	while(t--){
		char s[100];
		string s1;char c;
		cin>>(s+1)>>s1;
		c=s1[0];
		int n
举报

相关推荐

0 条评论