結果
問題 | No.24 数当てゲーム |
ユーザー | fal_rnd |
提出日時 | 2017-04-02 20:58:55 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 140 ms / 5,000 ms |
コード長 | 841 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 77,548 KB |
実行使用メモリ | 41,996 KB |
最終ジャッジ日時 | 2024-07-08 00:14:55 |
合計ジャッジ時間 | 4,406 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,388 KB |
testcase_01 | AC | 133 ms
40,940 KB |
testcase_02 | AC | 140 ms
41,316 KB |
testcase_03 | AC | 140 ms
41,268 KB |
testcase_04 | AC | 137 ms
41,496 KB |
testcase_05 | AC | 136 ms
41,364 KB |
testcase_06 | AC | 136 ms
41,996 KB |
testcase_07 | AC | 137 ms
41,172 KB |
testcase_08 | AC | 135 ms
41,444 KB |
testcase_09 | AC | 139 ms
41,428 KB |
ソースコード
import java.util.Scanner; public class Main{ static final Scanner s=new Scanner(System.in); public static void main(String args[]){ input(); solve(); } static int n, in[][]; static String f[]; private static void input(){ n=s.nextInt(); in=new int[n][4]; f=new String[n]; for(int i=0; i<n; i++){ for(int j=0; j<4; j++) in[i][j]=s.nextInt(); f[i]=s.next(); } } private static void solve(){ int[] res=new int[10]; for(int i=0; i<n; i++){ switch(f[i]){ case "YES": for(int j=0; j<4; j++) res[in[i][j]]++; break; case "NO": for(int j=0; j<4; j++) res[in[i][j]]=-1; break; } } int result=-1, v=-1; for(int i=0; i<10; i++){ if(v<res[i]){ v=res[i]; result=i; } } //System.out.println(Arrays.toString(res)); System.out.println(result); } }