結果
問題 |
No.24 数当てゲーム
|
ユーザー |
![]() |
提出日時 | 2016-05-23 12:15:49 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 125 ms / 5,000 ms |
コード長 | 854 bytes |
コンパイル時間 | 3,478 ms |
コンパイル使用メモリ | 77,772 KB |
実行使用メモリ | 41,160 KB |
最終ジャッジ日時 | 2024-10-07 01:01:51 |
合計ジャッジ時間 | 4,763 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
package yukicoder; import java.util.Scanner; public class No24 { public static void main(String[] args) { int[] num = new int[10]; Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = 0; i < N; i++){ int[] h = new int[4]; String s = null; h[0] = sc.nextInt(); h[1] = sc.nextInt(); h[2] = sc.nextInt(); h[3] = sc.nextInt(); s = sc.nextLine(); if(s.equals(" YES")){ yes(num, h); }else if(s.equals(" NO")){ no(num, h); } } sc.close(); int ans = 0; for(int i = 1; i < 10; i++){ if(num[ans] < num[i]){ ans = i; } } System.out.println(ans); } public static int[] yes(int[] num, int[] h){ for(int i = 0; i < 4; i++){ num[h[i]]++; } return num; } public static int[] no(int[] num, int[] h){ for(int i = 0; i < 4; i++){ num[h[i]]--; } return num; } }