結果
問題 | No.24 数当てゲーム |
ユーザー | cowgirl |
提出日時 | 2018-10-08 21:35:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 1,608 ms |
コンパイル使用メモリ | 167,684 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 15:54:32 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ std::vector<int> tb(10); int rel = 0, N; cin >> N; for(int i=0; i < N; i++){ vector<int> num(4); for(int j=0; j < 4; j++) cin >> num[i]; string jd; cin >> jd; if(jd == "YES"){ for(int j=0; j < 4; j++){ tb[num[j]]--; } rel--; } else { for(int j=0; j < 4; j++){ tb[num[j]]++; } } } for(int i=0; i < 10; i++){ if(tb[i] == rel) cout << i << endl; } }