結果
問題 | No.24 数当てゲーム |
ユーザー | papipen |
提出日時 | 2017-04-06 18:47:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 660 bytes |
コンパイル時間 | 2,890 ms |
コンパイル使用メモリ | 74,564 KB |
実行使用メモリ | 41,252 KB |
最終ジャッジ日時 | 2024-07-17 21:26:08 |
合計ジャッジ時間 | 4,625 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,224 KB |
testcase_01 | AC | 132 ms
41,064 KB |
testcase_02 | AC | 132 ms
41,236 KB |
testcase_03 | AC | 133 ms
41,252 KB |
testcase_04 | AC | 134 ms
41,164 KB |
testcase_05 | AC | 117 ms
39,968 KB |
testcase_06 | AC | 132 ms
40,984 KB |
testcase_07 | AC | 134 ms
40,964 KB |
testcase_08 | AC | 131 ms
40,908 KB |
testcase_09 | AC | 134 ms
40,992 KB |
ソースコード
import java.util.*; class N024{ public static void main(String args[]){ Scanner s = new Scanner(System.in); int n = s.nextInt(); int e[] = new int[10]; int count; for(int i = 0; i < n; i++){ int a = s.nextInt(); int b = s.nextInt(); int c = s.nextInt(); int d = s.nextInt(); String r = s.next(); if(r.equals("YES")){ count = 1; }else{ count = -1; } e[a] += count; e[b] += count; e[c] += count; e[d] += count; } int max = 0; for(int i = 0; i < e.length; i++){; max = Math.max(max , e[i]); } for(int i = 0; i < e.length; i++){ if(e[i] == max){ System.out.println(i); } } } }