結果
問題 | No.24 数当てゲーム |
ユーザー | YOSHI |
提出日時 | 2021-02-17 19:04:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,346 bytes |
コンパイル時間 | 3,915 ms |
コンパイル使用メモリ | 78,796 KB |
実行使用メモリ | 54,072 KB |
最終ジャッジ日時 | 2024-09-14 04:58:36 |
合計ジャッジ時間 | 5,697 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
53,788 KB |
testcase_01 | AC | 130 ms
53,984 KB |
testcase_02 | AC | 130 ms
53,792 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 132 ms
53,812 KB |
testcase_07 | AC | 133 ms
53,924 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Scanner; public class No00000024_Main { public static void main(String[] args) { Map<String, Integer> cntMap = new HashMap<String, Integer>() { { put("0", 0); put("1", 0); put("2", 0); put("3", 0); put("4", 0); put("5", 0); put("6", 0); put("7", 0); put("8", 0); put("9", 0); } }; Scanner scan = new Scanner(System.in); int n = Integer.parseInt(scan.nextLine()); for(int i = 0; i < n; i++) { String[] arr = scan.nextLine().split(" "); if("YES".equals(arr[4])) { cntMap.put(arr[0], cntMap.get(arr[0]) + 1); cntMap.put(arr[1], cntMap.get(arr[1]) + 1); cntMap.put(arr[2], cntMap.get(arr[2]) + 1); cntMap.put(arr[3], cntMap.get(arr[3]) + 1); } else { cntMap.remove(arr[0]); cntMap.remove(arr[1]); cntMap.remove(arr[2]); cntMap.remove(arr[3]); } } String result = ""; if(cntMap.keySet().size() == 1) { for(Entry<String, Integer> entry : cntMap.entrySet()) { result = entry.getKey(); } } else { int temp = 0; for(Entry<String, Integer> entry : cntMap.entrySet()) { if(temp < entry.getValue()) { result = entry.getKey(); temp = entry.getValue(); } } } System.out.println(result); scan.close(); } }