結果

問題 No.24 数当てゲーム
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 11:39:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 688 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-11-22 10:27:12
合計ジャッジ時間 4,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,048 KB
testcase_01 AC 129 ms
41,140 KB
testcase_02 AC 123 ms
40,136 KB
testcase_03 AC 131 ms
41,232 KB
testcase_04 AC 131 ms
41,100 KB
testcase_05 AC 127 ms
41,096 KB
testcase_06 AC 131 ms
41,268 KB
testcase_07 AC 132 ms
40,920 KB
testcase_08 AC 116 ms
40,132 KB
testcase_09 AC 130 ms
41,040 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