結果

問題 No.481 1から10
ユーザー トミートミー
提出日時 2024-04-01 19:05:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 73,924 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-09-30 21:57:45
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,104 KB
testcase_01 AC 121 ms
54,068 KB
testcase_02 AC 123 ms
53,960 KB
testcase_03 AC 124 ms
53,908 KB
testcase_04 AC 121 ms
53,796 KB
testcase_05 AC 125 ms
53,868 KB
testcase_06 AC 126 ms
54,088 KB
testcase_07 AC 124 ms
54,104 KB
testcase_08 AC 123 ms
53,928 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        boolean[] f = new boolean[10];
        for (int i = 0; i != 9; i++) {
            f[sc.nextInt() - 1] = true;
        }
        for (int i = 0; i != 9; i++) {
            if (!f[i]) {
                System.out.println(i + 1);
            }
        }

        sc.close();

    }
}
0