結果

問題 No.24 数当てゲーム
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 15:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 636 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-11-21 12:30:55
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,060 KB
testcase_01 AC 133 ms
54,152 KB
testcase_02 AC 136 ms
53,868 KB
testcase_03 AC 139 ms
54,348 KB
testcase_04 AC 134 ms
53,964 KB
testcase_05 AC 137 ms
54,212 KB
testcase_06 AC 133 ms
54,044 KB
testcase_07 AC 134 ms
54,116 KB
testcase_08 AC 136 ms
54,104 KB
testcase_09 AC 138 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] x = new int[10];
		for(int i = 0 ; i < n ; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			int d = sc.nextInt();
			String e = sc.next();
			if(e.equals("YES")) {
				x[a]++; x[b]++; x[c]++; x[d]++;
			} else {
				x[a] -= 100; x[b] -= 100; x[c] -= 100; x[d] -= 100;
			}
		}
		int ans = -1; int point = -1;
		for(int i = 0 ; i < 10 ; i++) {
			if(x[i] > point) {
				ans = i;
				point = x[i];
			}
		}
		System.out.println(ans);
 	}
}

0