結果

問題 No.24 数当てゲーム
ユーザー kaoetayakaoetaya
提出日時 2016-11-08 02:09:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-05-03 23:05:23
合計ジャッジ時間 4,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,228 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 118 ms
41,368 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    }
}
0