結果
問題 | No.24 数当てゲーム |
ユーザー | jp_ste |
提出日時 | 2016-02-19 09:06:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 838 bytes |
コンパイル時間 | 2,810 ms |
コンパイル使用メモリ | 78,184 KB |
実行使用メモリ | 54,224 KB |
最終ジャッジ日時 | 2024-09-22 12:13:26 |
合計ジャッジ時間 | 4,235 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
54,064 KB |
testcase_01 | AC | 130 ms
54,196 KB |
testcase_02 | AC | 131 ms
54,000 KB |
testcase_03 | AC | 134 ms
54,212 KB |
testcase_04 | AC | 132 ms
54,152 KB |
testcase_05 | AC | 133 ms
53,868 KB |
testcase_06 | AC | 117 ms
52,976 KB |
testcase_07 | AC | 133 ms
53,968 KB |
testcase_08 | AC | 132 ms
54,024 KB |
testcase_09 | AC | 132 ms
54,224 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { int N = scan.nextInt(); boolean isNo[] = new boolean[10]; int count[] = new int [10]; for(int i=0; i<N; i++) { int v1 = scan.nextInt(); int v2 = scan.nextInt(); int v3 = scan.nextInt(); int v4 = scan.nextInt(); String s = scan.next(); if(s.equals("YES")) { count[v1]++; count[v2]++; count[v3]++; count[v4]++; } else if(s.equals("NO")) { isNo[v1] = isNo[v2] = isNo[v3] = isNo[v4] = true; } } int max = 0; for(int i=0; i<10; i++) { max = Math.max(max, count[i]); } for(int i=0; i<10; i++) { if(count[i] == max && isNo[i] == false) { System.out.println(i); break; } } } } }