結果
問題 | No.24 数当てゲーム |
ユーザー | aikon_marimo |
提出日時 | 2018-01-29 00:35:02 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 148 ms / 5,000 ms |
コード長 | 747 bytes |
コンパイル時間 | 2,883 ms |
コンパイル使用メモリ | 77,368 KB |
実行使用メモリ | 41,388 KB |
最終ジャッジ日時 | 2024-12-29 16:24:14 |
合計ジャッジ時間 | 5,255 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
41,324 KB |
testcase_01 | AC | 132 ms
40,024 KB |
testcase_02 | AC | 147 ms
41,124 KB |
testcase_03 | AC | 145 ms
41,388 KB |
testcase_04 | AC | 146 ms
41,244 KB |
testcase_05 | AC | 147 ms
41,056 KB |
testcase_06 | AC | 148 ms
41,200 KB |
testcase_07 | AC | 137 ms
40,332 KB |
testcase_08 | AC | 145 ms
41,144 KB |
testcase_09 | AC | 148 ms
41,016 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int[] score = new int[10]; Arrays.fill(score, 0); int N = in.nextInt(); for (int i = 0; i < N; i++) { int A,B,C,D; String R; A = in.nextInt(); B = in.nextInt(); C = in.nextInt(); D = in.nextInt(); R = in.next(); if ("NO".equals(R)) { score[A]--; score[B]--; score[C]--; score[D]--; } else { score[A]++; score[B]++; score[C]++; score[D]++; } } int max = score[0]; int ans = 0; for (int i = 1; i <= 9; i++) { if (max < score[i]) { max = score[i]; ans = i; } } System.out.println(ans); } }