結果
問題 | No.24 数当てゲーム |
ユーザー | fumi6328 |
提出日時 | 2018-08-23 01:47:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 650 ms |
コンパイル使用メモリ | 55,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 17:03:53 |
合計ジャッジ時間 | 1,013 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; int a,b,c,d,flag[10] = {}; string r; for(int i = 0; i < n; i++){ cin >> a >> b >> c >> d >> r; if(r == "YES"){ flag[a,b,c,d]++; }else{ flag[a,b,c,d]--; } } int jud = -1,ans = 0; for(int i = 0; i <= 9; i++){ if(jud < flag[i]){ jud = flag[i]; ans = i; } } cout << ans <<endl; return 0; }