結果
問題 | No.24 数当てゲーム |
ユーザー | NEEHATOV |
提出日時 | 2020-06-07 05:44:45 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 04:09:28 |
合計ジャッジ時間 | 843 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <stdio.h> #include <string.h> int main() { int i, j, k, l = 0, lsize, N, A[6][4], B[100], cnt = 0, ANS[10] = {0,1,2,3,4,5,6,7,8,9}; char s[6][10]; scanf("%d", &N); for (i = 0; i < N; i++) { scanf("%d %d %d %d", &A[i][0], &A[i][1], &A[i][2], &A[i][3]); scanf("%s", s[i]); } for (i = 0; i < N ; i++) { for (j = 0; j < 4; j++) { if (strcmp(s[i], "NO") == 0) { ANS[A[i][j]] = -1; } else { B[l++] = A[i][j]; } } } for( k = 0; k <10; k++){ if (ANS[k] != -1) { cnt++; } } if (cnt == 1) { printf("%d\n", ANS[k-1]); return 0; } lsize = l ; l = 0; for (i = 0; i < N; i++) { if (strcmp(s[i], "YES") == 0) { for (k = 0; k < lsize; k++) { for (l = k + 1; l < lsize; l++) { if (B[k] == B[l] && ANS[B[l]] != -1) { printf("%d\n", B[l]); return 0; } } } } } }