結果

問題 No.542 1円玉と5円玉
ユーザー tentententen
提出日時 2020-10-09 12:58:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 76,512 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-20 06:44:27
合計ジャッジ時間 5,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
53,964 KB
testcase_01 AC 150 ms
53,720 KB
testcase_02 AC 155 ms
54,036 KB
testcase_03 AC 141 ms
54,108 KB
testcase_04 AC 141 ms
53,684 KB
testcase_05 AC 151 ms
53,768 KB
testcase_06 AC 152 ms
54,040 KB
testcase_07 AC 151 ms
53,856 KB
testcase_08 AC 158 ms
54,340 KB
testcase_09 AC 152 ms
53,812 KB
testcase_10 AC 153 ms
54,112 KB
testcase_11 AC 151 ms
53,900 KB
testcase_12 AC 156 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        TreeSet<Integer> set = new TreeSet<>();
        for (int i = 0; i <= b; i++) {
            for (int j = 0; j <= a; j++) {
                set.add(i * 5 + j);
            }
        }
        set.remove(0);
        StringBuilder sb = new StringBuilder();
        for (int x : set) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}
0