結果
問題 | No.24 数当てゲーム |
ユーザー | ミドリムシ |
提出日時 | 2017-10-14 15:26:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 329 ms |
コンパイル使用メモリ | 56,772 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 14:40:40 |
合計ジャッジ時間 | 759 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <iostream> using namespace std; int main(){ int N; cin >> N; int digits[N][4]; bool if_YES[N]; bool possibility[10]; for(int i = 0; i < 10; i++){ possibility[i] = true; } for(int i = 0; i < N; i++){ cin >> digits[i][0]; cin >> digits[i][1]; cin >> digits[i][2]; cin >> digits[i][3]; string YES_NO; cin >> YES_NO; if(YES_NO == "YES"){ if_YES[i] = true; }else{ if_YES[i] = false; } } for(int i = 0; i < 10; i++){ bool if_ok = true; for(int j = 0; j < N; j++){ if(((digits[j][0] == i || digits[j][1] == i || digits[j][2] == i || digits[j][3] == i) && if_YES[i] == false) || ((digits[j][0] != i && digits[j][1] != i && digits[j][2] != i && digits[j][3] != i) && if_YES[i] == true)){ if_ok = false; break; } } if(if_ok){ cout << i << endl; return 0; } } }