結果
問題 | No.24 数当てゲーム |
ユーザー | shioya |
提出日時 | 2019-02-18 21:21:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 2,372 ms |
コンパイル使用メモリ | 199,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 05:41:41 |
合計ジャッジ時間 | 2,575 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int isNum(bool _num[10]){ int ans=0; for(int i=0;i<10;i++){ if(_num[i]==true){ ans = i; break; } } return ans; } int main() { int n; cin>>n; bool num[10]; for(int i=0;i<10;i++)num[i]=true; int candidate[4]; string str; for(int i=0;i<n;i++){ for(int i=0;i<4;i++)cin>>candidate[i]; cin>>str; if(str=="NO"){ for(int i=0;i<4;i++)num[candidate[i]]=false; } else if(str=="YES"){ for(int i=0;i<10;i++){ if(candidate[0]==i||candidate[1]==i||candidate[2]==1||candidate[3]==i){ }else{ num[i]==false; } } } } cout<<isNum(num)<<endl; return 0; }