結果
問題 | No.24 数当てゲーム |
ユーザー | cumin |
提出日時 | 2020-03-10 07:05:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 1,743 ms |
コンパイル使用メモリ | 168,852 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 23:06:45 |
合計ジャッジ時間 | 2,102 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(long long i=0;i<(n);i++) using namespace std; typedef long long ll; const int MOD=1e9+7; const int MAX = 1000000; const ll INF = (1LL << 31) - 1; const double pi=acos(-1); int main(){ int n; cin >> n; vector<int>vec(10); rep(i,n){ int a,b,c,d; string s; cin >> a >> b >> c >> d >> s; a--; b--; c--; d--; if(s=="YES"){ rep(j,10){ if(j==a || j==b || j==c || j==d){ vec[j]++; } } } else{ rep(j,10){ if(j!=a && j!=b && j!=c && j!=d){ vec[j]++; } } } } rep(i,10){ if(vec[i]==n){ cout <<i+1<<endl; return 0; } } }