結果

問題 No.24 数当てゲーム
ユーザー hnthnt
提出日時 2019-12-06 00:05:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 3,074 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-02 08:59:54
合計ジャッジ時間 4,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,356 KB
testcase_01 AC 96 ms
41,588 KB
testcase_02 AC 107 ms
41,548 KB
testcase_03 AC 107 ms
40,336 KB
testcase_04 AC 105 ms
41,464 KB
testcase_05 AC 105 ms
41,320 KB
testcase_06 AC 108 ms
41,696 KB
testcase_07 AC 105 ms
41,436 KB
testcase_08 AC 104 ms
40,156 KB
testcase_09 AC 92 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class no24 {
    public static void main(String[] args) {
        boolean[] b = new boolean[10];
        Arrays.fill(b, true);
        Scanner sc = new Scanner(System.in);
        final int N = sc.nextInt();
        for (int i = 0; i < N; i++) {
            int[] input = {sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt()};
            if (sc.next().equals("NO")) {
                for (int j : input) {
                    b[j] = false;
                }
            } else {
                for (int j = 0; j < 10; j++) {
                    boolean bb = true;
                    for (int k : input) {
                        if (j == k) {
                            bb = false;
                            break;
                        }
                    }
                    if (bb) {
                        b[j] = false;
                    }
                }
            }
        }
        for (int i = 0; i < 10; i++) {
            if (b[i]) {
                System.out.println(i);
            }
        }
    }
}
0