結果
問題 | No.24 数当てゲーム |
ユーザー | face4 |
提出日時 | 2018-04-16 21:31:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 58 ms / 5,000 ms |
コード長 | 1,037 bytes |
コンパイル時間 | 2,581 ms |
コンパイル使用メモリ | 74,444 KB |
実行使用メモリ | 50,360 KB |
最終ジャッジ日時 | 2024-06-27 04:04:57 |
合計ジャッジ時間 | 3,365 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,344 KB |
testcase_01 | AC | 56 ms
50,268 KB |
testcase_02 | AC | 56 ms
50,296 KB |
testcase_03 | AC | 58 ms
50,292 KB |
testcase_04 | AC | 56 ms
50,360 KB |
testcase_05 | AC | 56 ms
50,044 KB |
testcase_06 | AC | 56 ms
50,124 KB |
testcase_07 | AC | 57 ms
49,916 KB |
testcase_08 | AC | 56 ms
50,300 KB |
testcase_09 | AC | 56 ms
50,048 KB |
ソースコード
import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int[] arr = new int[10]; while (n-- > 0) { String[] input = br.readLine().split(" "); if (input[4].equals("YES")) { for (int i = 0; i < 4; i++) { arr[Integer.parseInt(input[i])]++; } } else if (input[4].equals("NO")) { for (int i = 0; i < 4; i++) { arr[Integer.parseInt(input[i])]--; } } } int maxIndex = 0; int maxValue = arr[0]; for (int i = 1; i < 10; i++) { if (maxValue < arr[i]) { maxIndex = i; maxValue = arr[i]; } } System.out.println(maxIndex); } }