結果
問題 | No.24 数当てゲーム |
ユーザー | shimashima_k |
提出日時 | 2015-04-25 14:09:46 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 699 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 55,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 02:19:44 |
合計ジャッジ時間 | 925 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include "iostream" using namespace std; int main(){ int n; int a,b,c,d; int list[] = {0,0,0,0,0,0,0,0,0,0}; string truth; cin>>n; while (n--) { cin >>a>>b>>c>>d>>truth; if (truth == "NO") { for (int i=0; i < 10; i++) { if (i==a or i==b or i==c or i==d){ list[i] =-1; } } } else{ for (int i=0; i < 10; i++) { if (i!=a and i!=b and i!=c and i!=d){ list[i] =-1; } } } } for (int i=0; i < 10; i++) { if (list[i]==0){ cout<<i<<endl; } } return 0; }