結果
問題 | No.24 数当てゲーム |
ユーザー | drymouse |
提出日時 | 2019-12-13 18:46:50 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,367 bytes |
コンパイル時間 | 1,181 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 09:55:48 |
合計ジャッジ時間 | 1,331 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> void YES(int gue[], int *ans); void NO(int gue[], int *ans); void clean(int *ans); int main(void) { int N; int A_D[4] = {0}; int Ans[10]; int *pAns = Ans; char R[5]; char *pR; int seikai; scanf("%d", &N); for (int i = 0; i < 10; i++) { Ans[i] = i; } for (int i = 0; i < N; i++) { for (int j = 0; j < 4; j++) { scanf("%d", &A_D[j]); } scanf("%s", R); if (R == "YES") { YES(A_D, pAns); } else { NO(A_D, pAns); } } for (int i = 0; i < 10; i++) { if (Ans[i] != 10) { seikai = Ans[i]; break; } } printf("%d", seikai); return EXIT_SUCCESS; } void YES(int gue[], int *ans) { for (int i = 0; i < 10; i++) { for (int j = 0; j < 4; j++) { if (*(ans+i) == 10) { continue; } else if (*(ans+i) != gue[j]) { *(ans+i) = 10; } } } return; } void NO(int gue[], int *ans) { for (int i = 0; i < 10; i++) { for (int j = 0; j < 4; j++) { if (*(ans+i) == 10) { continue; } else if (*(ans+i) == gue[j]) { *(ans+i) = 10; } } } return; }