結果
問題 | No.24 数当てゲーム |
ユーザー | zect518 |
提出日時 | 2018-05-27 12:56:54 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 528 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 18:26:06 |
合計ジャッジ時間 | 748 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d",&tarn); | ~~~~~^~~~~~~~~~~~ main.cpp:11:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | for(i=0;i<4;i++){scanf("%d",&ans[i]);} | ~~~~~^~~~~~~~~~~~~~ main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%s",tf); | ~~~~~^~~~~~~~~
ソースコード
#include<stdio.h> #include<string.h> int main(){ int i,s,tarn,num[10]={1,1,1,1,1,1,1,1,1,1}; int ans[4]; char tf[20],yes[20]="YES"; setvbuf(stdout,NULL,_IONBF,0); scanf("%d",&tarn); for(s=0;s<tarn;s++){ for(i=0;i<4;i++){scanf("%d",&ans[i]);} scanf("%s",tf); if(strcmp(tf,yes)==0){ for(i=0;i<10;i++){ if(i!=ans[0]&&i!=ans[1]&&i!=ans[2]&&i!=ans[3])num[i]=0; } } else for(i=0;i<10;i++){ if(i==ans[0]||i==ans[1]||i==ans[2]||i==ans[3])num[i]=0; } }for(i=0;i<10;i++) if(num[i]==1)printf("%d",i); }