結果

問題 No.542 1円玉と5円玉
ユーザー わらわら
提出日時 2020-12-11 00:05:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 76,144 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-09-19 20:53:43
合計ジャッジ時間 4,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,268 KB
testcase_01 AC 119 ms
40,092 KB
testcase_02 AC 121 ms
41,360 KB
testcase_03 AC 120 ms
41,404 KB
testcase_04 AC 122 ms
41,420 KB
testcase_05 AC 130 ms
41,312 KB
testcase_06 AC 115 ms
41,404 KB
testcase_07 AC 128 ms
41,196 KB
testcase_08 AC 126 ms
41,500 KB
testcase_09 AC 129 ms
41,228 KB
testcase_10 AC 108 ms
41,304 KB
testcase_11 AC 130 ms
41,188 KB
testcase_12 AC 138 ms
41,684 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);
            }
        }

        // 合計値が0のものを排除s
        set.remove(0);
        StringBuilder sb = new StringBuilder();
        for (int x : set) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}
0