結果

問題 No.542 1円玉と5円玉
ユーザー mosmos_21mosmos_21
提出日時 2017-07-14 22:26:54
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 75,268 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-10-07 23:02:22
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,048 KB
testcase_01 AC 125 ms
41,492 KB
testcase_02 AC 126 ms
41,112 KB
testcase_03 AC 116 ms
40,124 KB
testcase_04 AC 128 ms
41,340 KB
testcase_05 AC 143 ms
41,684 KB
testcase_06 AC 146 ms
41,348 KB
testcase_07 AC 146 ms
41,120 KB
testcase_08 AC 152 ms
41,232 KB
testcase_09 AC 150 ms
41,212 KB
testcase_10 AC 131 ms
41,532 KB
testcase_11 WA -
testcase_12 AC 172 ms
41,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;

public class Main {
    Scanner in = new Scanner(System.in);

    public void solve(){
        int a = in.nextInt(), b = in.nextInt();
        HashSet<Integer> set = new HashSet<>();

        for(int i = 0; i <= a; i++){
            for(int j = 0; j <= b; j++){
                set.add(i + j * 5);
            }
        }
        Integer[] list = new Integer[set.size()];
        set.toArray(list);
        for(int i = 1; i < list.length; i++){
            System.out.println(list[i]);
        }
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0