結果

問題 No.24 数当てゲーム
ユーザー zaichuzaichu
提出日時 2015-12-28 18:34:27
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 1,304 ms
コンパイル使用メモリ 161,884 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 07:50:46
合計ジャッジ時間 1,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int n;
	cin >> n;
	vector<int> data(10,0);
	string str;
	int a,b,c,d;
	for(int i = 0; i < n; i++){
		cin >> a >> b >> c >> d;
		cin >> str;
		if(str == "NO"){
			data[a]--; data[b]--; data[c]--; data[d]--;
		}else{
			data[a]++; data[b]++; data[c]++; data[d]++;
		}
	}
	int ans = 0;
	int max = INT_MIN;
	for(int i = 0; i < 10; i++){
		if(max < data[i]){
			max = data[i];
			ans = i;
		}
	}
	cout << ans << endl;
	return 0;
}
0