結果

問題 No.24 数当てゲーム
ユーザー suiginginsuigingin
提出日時 2015-07-07 22:02:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 709 bytes
コンパイル時間 3,835 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-07-08 01:31:32
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,132 KB
testcase_01 AC 110 ms
41,280 KB
testcase_02 AC 97 ms
39,376 KB
testcase_03 AC 102 ms
40,120 KB
testcase_04 AC 99 ms
40,248 KB
testcase_05 AC 99 ms
40,024 KB
testcase_06 AC 110 ms
41,232 KB
testcase_07 AC 112 ms
41,012 KB
testcase_08 AC 109 ms
41,124 KB
testcase_09 AC 98 ms
39,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No_024 {
	Scanner sc = new Scanner(System.in);

	void run() {
		int N = sc.nextInt();
		int[] cnt = new int[10];
		while (N-- > 0) {
			int[] n = { sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt() };
			if (sc.next().equals("YES")) {
				for (int j = 0; j < 4; j++) {
					if (cnt[n[j]] != -1) cnt[n[j]]++;
				}
			} else {
				for (int j = 0; j < 4; j++) {
					cnt[n[j]] = -1;
				}
			}
		}
		int max = -100;
		int maxIndex = 0;
		for (int i = 0; i < 10; i++) {
			if (max < cnt[i]) {
				max = cnt[i];
				maxIndex = i;
			}
		}
		System.out.println(maxIndex);
	}

	public static void main(String[] args) {
		new No_024().run();
	}
}
0