結果
問題 | No.24 数当てゲーム |
ユーザー | mosmos_21 |
提出日時 | 2016-02-14 14:49:50 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 21,376 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 06:28:58 |
合計ジャッジ時間 | 925 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:14:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d", &in[j]); | ^~~~~~~~~~~~~~~~~~~ main.c:15:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%s", yn); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ int n, num[9] = {0}, max = 0; int i, j; int in[4]; char yn[8]; scanf("%d", &n); for(i = 0; i < n; i++){ for(j = 0; j < 4; j++) scanf("%d", &in[j]); scanf("%s", yn); for(j = 0; j < 4; j++) num[in[j] - 1] += yn[0] == 'Y' ? 1 : -1; } for(i = 1; i < 9; i++){ if(num[max] < num[i]) max = i; } printf("%d", max + 1); return 0; }