結果
問題 | No.24 数当てゲーム |
ユーザー | picakun |
提出日時 | 2017-05-28 17:10:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 609 bytes |
コンパイル時間 | 416 ms |
コンパイル使用メモリ | 58,076 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 15:08:26 |
合計ジャッジ時間 | 2,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:16: warning: ‘N’ is used uninitialized [-Wuninitialized] 10 | int A[N],B[N],C[N],D[N]; | ^ main.cpp:9:13: note: ‘N’ declared here 9 | int N; | ^
ソースコード
#include<iostream> #include<algorithm> #include<string> using namespace std; int main(){ int N; int A[N],B[N],C[N],D[N]; string R; cin >> N; bool ans[10]; for(int i=0;i<10;i++) ans[i] = true; for(int i = 0; i < N; i++){ cin >> A[i] >> B[i] >> C[i] >> D[i] >> R; if(R == "NO"){ ans[A[i]] = false; ans[B[i]] = false; ans[C[i]] = false; ans[D[i]] = false; } else{ for(int j = 0; j < 10;j++){ if(j != A[i] && j != B[i] && j != C[i] && j != D[i]) ans[j] = false; } } } for(int i=0;i < 10;i++){ if(ans[i]){ cout << i << endl; break; } } return 0; }