QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#587560#6783. Cooking Competitionpiggy123#AC ✓1ms3624kbC++202.7kb2024-09-24 20:37:582024-09-24 20:38:00

Judging History

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

  • [2024-09-24 20:38:00]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3624kb
  • [2024-09-24 20:37:58]
  • 提交

answer

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

int main(){
	ll t;
	cin >> t;
	while (t--){
		ll n,c1=0,c2=0;
		cin >> n;
		for (ll i=1;i<=n;i++){
			ll x;
			cin >> x;
			if (x==1)c1++;
			else if (x==2)c2++;
			else if (x==3)c1++,c2++;
			else c1--,c2--;
		}
		if (c1==c2)cout<<"Draw\n";
		else if (c1>c2)cout<<"Kobayashi\n";
		else cout<<"Tohru\n";
	} 
	return 0;
}

/*
                                                                
 ■■■■■     ■■      ■■■     ■■■   ■    ■     ■     ■■■■    ■■■■  
 ■   ■■    ■■     ■  ■■   ■  ■■  ■    ■    ■■     ■  ■■  ■■  ■  
 ■    ■    ■■    ■    ■  ■    ■   ■  ■    ■■■    ■■  ■■  ■   ■■ 
 ■    ■    ■■    ■    ■  ■    ■   ■  ■     ■■    ■   ■■      ■■ 
 ■    ■    ■■    ■       ■         ■■      ■■        ■■      ■  
 ■   ■■    ■■    ■  ■■■  ■  ■■■    ■■      ■■       ■■     ■■■  
 ■■■■■     ■■    ■    ■  ■    ■    ■■      ■■      ■■        ■■ 
 ■         ■■    ■    ■  ■    ■    ■■      ■■     ■■          ■ 
 ■         ■■    ■    ■  ■    ■    ■■      ■■     ■      ■   ■■ 
 ■         ■■    ■■  ■■  ■■  ■■    ■■      ■■    ■       ■■  ■■ 
 ■         ■■      ■■■■    ■■■■    ■■      ■■    ■■■■■■   ■■■■  
*/

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3600kb

input:

3
3
1 2 1
2
2 4
2
3 4

output:

Kobayashi
Tohru
Draw

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 1ms
memory: 3624kb

input:

100
2
4 3
1
2
5
3 3 3 1 2
6
2 4 2 4 4 3
8
1 4 1 3 2 1 3 2
17
3 4 4 3 4 3 2 1 4 4 4 3 4 4 3 2 2
5
2 4 2 1 4
5
3 2 2 4 4
2
2 3
17
4 3 3 1 3 1 3 1 1 3 2 3 2 3 3 3 2
14
1 2 4 1 3 1 1 3 1 4 1 1 4 3
4
2 3 3 3
10
2 2 4 4 3 1 3 2 3 2
7
2 2 1 1 3 2 2
14
2 1 3 3 2 1 4 4 4 3 4 1 3 3
2
1 3
11
4 4 4 2 2 4 2 4 2 ...

output:

Draw
Tohru
Draw
Tohru
Kobayashi
Tohru
Tohru
Tohru
Tohru
Kobayashi
Kobayashi
Tohru
Tohru
Tohru
Kobayashi
Kobayashi
Tohru
Kobayashi
Draw
Kobayashi
Draw
Tohru
Kobayashi
Tohru
Kobayashi
Tohru
Tohru
Tohru
Tohru
Tohru
Tohru
Tohru
Tohru
Tohru
Draw
Tohru
Tohru
Tohru
Draw
Tohru
Draw
Kobayashi
Kobayashi
Kobay...

result:

ok 100 lines