QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#279033#5436. DRX vs. T1Jalppatel1428WA 0ms3772kbC++14316b2023-12-08 03:22:492023-12-08 03:22:49

Judging History

你现在查看的是最新测评结果

  • [2023-12-08 03:22:49]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3772kb
  • [2023-12-08 03:22:49]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int solve(){
	string str;
	cin>>str;
	int cnt=0;
	for(int i=0;i<str.size();i++){
		cnt+=(str[i]=='T');
		cnt-=(str[i]=='D');	
	}
	if(cnt>0)cout<<"T1"<<endl;
	else cout<<"RDX"<<endl;
}

int main(){
	int tc;
	cin>>tc;
	while(tc--)solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3772kb

input:

TDTT?

output:


result:

wrong answer 1st lines differ - expected: 'T1', found: ''