結果

問題 No.481 1から10
ユーザー yagi2yagi2
提出日時 2017-04-14 10:54:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-07-18 15:14:41
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,256 KB
testcase_01 AC 107 ms
40,096 KB
testcase_02 AC 110 ms
41,120 KB
testcase_03 AC 106 ms
39,920 KB
testcase_04 AC 112 ms
41,624 KB
testcase_05 AC 114 ms
41,332 KB
testcase_06 AC 114 ms
41,512 KB
testcase_07 AC 106 ms
40,932 KB
testcase_08 AC 108 ms
41,052 KB
testcase_09 AC 115 ms
41,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        boolean map[];
        map = new boolean[11];
        List<Integer> list = new ArrayList<>();

        Scanner sc = new Scanner(System.in);
        for (int i = 0; i < 9; i++){
            list.add(Integer.parseInt(sc.next()));
            map[list.get(i)] = true;
        }

        for (int i = 1; i <= 10; i++) {
            if (!map[i]) {
                System.out.println(i);
            }
        }
    }
}
0