結果

問題 No.24 数当てゲーム
ユーザー kano_townkano_town
提出日時 2014-11-20 00:41:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 3,829 ms
コンパイル使用メモリ 80,216 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2025-01-02 19:22:59
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,692 KB
testcase_01 AC 108 ms
41,548 KB
testcase_02 AC 110 ms
41,784 KB
testcase_03 AC 116 ms
41,820 KB
testcase_04 AC 116 ms
41,444 KB
testcase_05 AC 111 ms
41,772 KB
testcase_06 AC 111 ms
41,676 KB
testcase_07 AC 112 ms
41,728 KB
testcase_08 AC 111 ms
41,472 KB
testcase_09 AC 113 ms
41,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder24 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int a, b, c, d, max = -100, index = 0;
		
		int[] num = new int[10];
		Arrays.fill(num, 0);
			
		for (int i = 0; i < n; i++) {
			a = sc.nextInt();
			b = sc.nextInt();
			c = sc.nextInt();
			d = sc.nextInt();
			if (sc.next().equals("NO")) {
				num[a] = -100;
				num[b] = -100;
				num[c] = -100;
				num[d] = -100;
			} else {
				num[a]++;
				num[b]++;
				num[c]++;
				num[d]++;
			}
		}
		
		for (int i = 0; i < 10; i++) {
			if (max < num[i]) {
				max = num[i];
				index = i;
			}
		}
		
		System.out.println(index);
	}
}
0