結果

問題 No.24 数当てゲーム
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-23 13:36:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 909 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-04-16 09:06:32
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,736 KB
testcase_01 AC 137 ms
53,940 KB
testcase_02 AC 137 ms
54,212 KB
testcase_03 AC 140 ms
54,364 KB
testcase_04 AC 136 ms
54,032 KB
testcase_05 AC 137 ms
54,188 KB
testcase_06 AC 139 ms
54,284 KB
testcase_07 AC 145 ms
53,776 KB
testcase_08 AC 140 ms
54,156 KB
testcase_09 AC 136 ms
54,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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];// Hint
			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 {
				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) {// YESの場合
		for (int i = 0; i < 4; i++) {
			num[h[i]]++;
		}
		return num;
	}

	public static int[] no(int[] num, int[] h) {// NOの場合
		for (int i = 0; i < 4; i++) {
			num[h[i]]--;
		}
		return num;
	}
}
0