結果
問題 | No.24 数当てゲーム |
ユーザー | syu |
提出日時 | 2020-08-26 21:20:31 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 135 ms / 5,000 ms |
コード長 | 1,349 bytes |
コンパイル時間 | 3,063 ms |
コンパイル使用メモリ | 79,324 KB |
実行使用メモリ | 41,480 KB |
最終ジャッジ日時 | 2024-11-07 13:40:13 |
合計ジャッジ時間 | 4,552 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,340 KB |
testcase_01 | AC | 130 ms
40,828 KB |
testcase_02 | AC | 131 ms
40,912 KB |
testcase_03 | AC | 133 ms
41,024 KB |
testcase_04 | AC | 131 ms
41,172 KB |
testcase_05 | AC | 117 ms
39,768 KB |
testcase_06 | AC | 133 ms
41,480 KB |
testcase_07 | AC | 135 ms
40,892 KB |
testcase_08 | AC | 132 ms
40,908 KB |
testcase_09 | AC | 134 ms
41,148 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); Map<Integer,Integer> map=new HashMap<>(); for(int i=0;i<10;i++){ map.put(i,0); } for(int i=0;i<n;i++){ int num_1=sc.nextInt(); int num_2=sc.nextInt(); int num_3=sc.nextInt(); int num_4=sc.nextInt(); int[] numbers={num_1,num_2,num_3,num_4}; String result=sc.next(); if(result.equals("NO")){ for(int number:numbers){ int value=map.get(number)-1; map.put(number,value); } }else{ for(int number:numbers){ int value=map.get(number)+1; map.put(number,value); } } } int maxValue=0; for(int key:map.keySet()){ int value=map.get(key); if(maxValue<value){ maxValue=value; } } //System.out.println(maxValue); for(int key:map.keySet()){ int value=map.get(key); if(value==maxValue){ System.out.println(key); } } } }