結果

問題 No.24 数当てゲーム
ユーザー lrf141lrf141
提出日時 2016-12-01 13:54:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 3,452 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-11-27 15:42:07
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,108 KB
testcase_01 AC 131 ms
41,348 KB
testcase_02 AC 119 ms
40,176 KB
testcase_03 AC 133 ms
41,432 KB
testcase_04 AC 134 ms
41,168 KB
testcase_05 AC 132 ms
41,236 KB
testcase_06 AC 117 ms
40,228 KB
testcase_07 AC 131 ms
41,092 KB
testcase_08 AC 117 ms
40,176 KB
testcase_09 AC 132 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class no24{
    public static void main(String... args){
        
        Scanner scan = new Scanner(System.in);
        
        int n = scan.nextInt();
        int res[] = new int[10];
        int a,b,c,d,check=0;
        String flag;

        for(int i = 0; i < n; i++){
            a = scan.nextInt();
            b = scan.nextInt();
            c = scan.nextInt();
            d = scan.nextInt();

            flag = scan.next();
            if(flag.equals("YES")){
                res[a]++;
                res[b]++;
                res[c]++;
                res[d]++;
                check++;
            }else{
                res[a]--;
                res[b]--;
                res[c]--;
                res[d]--;
            }
        }

        for(int i = 0; i < 10; i++){
            if(res[i] == check){
                System.out.println(i);
                break;
            }
        }

    }
}
0