結果

問題 No.24 数当てゲーム
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 11:39:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 688 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-05-02 01:13:33
合計ジャッジ時間 3,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,528 KB
testcase_01 AC 98 ms
40,320 KB
testcase_02 AC 111 ms
41,004 KB
testcase_03 AC 116 ms
39,744 KB
testcase_04 AC 104 ms
40,452 KB
testcase_05 AC 110 ms
40,804 KB
testcase_06 AC 108 ms
40,888 KB
testcase_07 AC 109 ms
41,164 KB
testcase_08 AC 107 ms
40,760 KB
testcase_09 AC 100 ms
40,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] p) {
        Scanner q = new Scanner(System.in);
        int n = q.nextInt();
        char f = 0x3FF;
        char z = 0x0;
        for (int i = 0; i < n; i++) {
            int a = q.nextInt();
            int b = q.nextInt();
            int c = q.nextInt();
            int d = q.nextInt();
            f &= ("YES".equals((q.next()))) ? (z | 1 << a | 1 << b | 1 << c | 1 << d) : ~(z | 1 << a | 1 << b | 1 << c | 1 << d);
        }
        for (int i = 0; i < 11; i++) {
            if ((f & 1 << i) != 0) {
                System.out.println(i);
                break;
            }
        }
    }
}
0