結果
問題 | No.24 数当てゲーム |
ユーザー | butsurizuki |
提出日時 | 2016-12-04 20:14:47 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 21,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 19:20:44 |
合計ジャッジ時間 | 665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&n); | ^~~~~~~~~~~~~~ main.c:8:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d%d%d%d%s",&a,&b,&c,&d,s); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(void){ int a,b,c,d,n,i,j,k[16]={0}; char s[4]; scanf("%d",&n); for(i = 1;i <= n;i++){ scanf("%d%d%d%d%s",&a,&b,&c,&d,s); for(j = 0;j <= 9;j++){ if(j == a || j == b || j == c || j == d){ if(s[0] == 'N'){k[j] = 1;} } else{ if(s[0] == 'Y'){k[j] = 1;} } } } for(i = 0;i <= 9;i++){ if(!(k[i])){printf("%d\n",i);} } return 0; }