結果

問題 No.24 数当てゲーム
ユーザー cowgirlcowgirl
提出日時 2018-10-08 21:37:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 1,419 ms
コンパイル使用メモリ 164,812 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-20 18:52:51
合計ジャッジ時間 1,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 i=0; i < 4; i++){
                tb[num[i]]--;
            }
            rel--;
        } else {
            for(int i=0; i < 4; i++){
                tb[num[i]]++;
            }
        }
    }
    for(int i=0; i < 10; i++){
        if(tb[i] == rel) cout << i << endl;
    }
}
0