結果
問題 | No.24 数当てゲーム |
ユーザー | syu |
提出日時 | 2020-08-26 21:21:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 1,475 bytes |
コンパイル時間 | 2,444 ms |
コンパイル使用メモリ | 78,992 KB |
実行使用メモリ | 41,412 KB |
最終ジャッジ日時 | 2024-11-07 13:40:17 |
合計ジャッジ時間 | 4,458 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,280 KB |
testcase_01 | AC | 131 ms
41,208 KB |
testcase_02 | AC | 122 ms
40,152 KB |
testcase_03 | AC | 136 ms
41,412 KB |
testcase_04 | AC | 133 ms
41,020 KB |
testcase_05 | AC | 132 ms
41,068 KB |
testcase_06 | AC | 136 ms
41,052 KB |
testcase_07 | AC | 138 ms
41,120 KB |
testcase_08 | AC | 134 ms
41,252 KB |
testcase_09 | AC | 135 ms
41,300 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(); //Yes結果のValueには1足して、No結果のValueからは1をひく 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); } } } //maxValueを探して、それに対応するkeyを出力 int maxValue=0; for(int key:map.keySet()){ int value=map.get(key); if(maxValue<value){ maxValue=value; } } for(int key:map.keySet()){ int value=map.get(key); if(value==maxValue){ System.out.println(key); } } } }