結果
問題 | No.24 数当てゲーム |
ユーザー | azusa_phys |
提出日時 | 2021-03-22 16:23:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 30,976 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 05:34:34 |
合計ジャッジ時間 | 859 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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> int main(void){ int N; scanf("%d\n",&N); int dp[10]={0}; int target=0; int i,k; for(i=0;i<N;i++){ int num[4]={0}; for(k=0;k<4;k++){ scanf("%d",&num[k]); } char str[100]; scanf("%s\n",str); if(str == "YES"){ for(k=0;k<4;k++){ dp[num[k]]--; } target--; } else if(str == "NO"){ for(k=0;k<4;k++){ dp[num[k]]++; } } } for(i=0;i<10;i++){ if(dp[i] == target){ printf("%d\n",i); } } return 0; }