結果

問題 No.24 数当てゲーム
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 11:34:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 791 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-05-02 01:06:07
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,220 KB
testcase_01 AC 146 ms
41,212 KB
testcase_02 AC 147 ms
41,308 KB
testcase_03 AC 146 ms
41,400 KB
testcase_04 AC 143 ms
41,320 KB
testcase_05 AC 142 ms
40,924 KB
testcase_06 AC 145 ms
41,408 KB
testcase_07 AC 142 ms
41,540 KB
testcase_08 AC 141 ms
41,108 KB
testcase_09 AC 144 ms
41,112 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();
        char flg = 0x03FF;

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

            char z = 0x0000;
            if ("YES".equals((sc.next()))) {
                flg &= (z | 1 << a | 1 << b | 1 << c | 1 << d);
            } else {
                flg &= ~(z | 1 << a | 1 << b | 1 << c | 1 << d);
            }
        }
        for (int i = 0; i < 11; i++) {
            if ((flg & 1 << i) != 0) {
                System.out.println(i);
                break;
            }
        }
    }
}
0