結果

問題 No.481 1から10
ユーザー tentententen
提出日時 2020-11-11 18:24:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-07-22 18:44:49
合計ジャッジ時間 3,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,864 KB
testcase_01 AC 99 ms
52,644 KB
testcase_02 AC 103 ms
54,328 KB
testcase_03 AC 105 ms
53,856 KB
testcase_04 AC 106 ms
54,108 KB
testcase_05 AC 105 ms
54,156 KB
testcase_06 AC 111 ms
54,080 KB
testcase_07 AC 108 ms
53,828 KB
testcase_08 AC 104 ms
53,936 KB
testcase_09 AC 109 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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