結果
問題 | No.24 数当てゲーム |
ユーザー | mudbdb |
提出日時 | 2015-06-06 03:09:00 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 22,016 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 14:26:09 |
合計ジャッジ時間 | 695 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 0 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &N); | ^~~~~~~~~~~~~~~ main.c:10:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | for (j=0; j<4; j++) scanf("%d", &(A[i][j])); | ^~~~~~~~~~~~~~~~~~~~~~~ main.c:11:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%s", R[i]); | ^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> int main() { int N, i, j; int A[6][4]; char R[6][4]; scanf("%d", &N); for (i=0; i<N; i++) { for (j=0; j<4; j++) scanf("%d", &(A[i][j])); scanf("%s", R[i]); } int k; char jiro[9]; char taro[9]; for (k=0; k<9; k++) jiro[k] = 1; for (i=0; i<N; i++) { if (R[i][0] == 'Y') { for (k=0; k<9; k++) taro[k] = 0; for (j=0; j<4; j++) taro[A[i][j]-1] = 1; } else { for (k=0; k<9; k++) taro[k] = 1; for (j=0; j<4; j++) taro[A[i][j]-1] = 0; } for (k=0; k<9; k++) jiro[k] &= taro[k]; } for (k=0; k<9; k++) { if (jiro[k] == 1) break; } int ans = k+1; printf("%d\n", ans); return 0; }