結果

問題 No.542 1円玉と5円玉
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-16 22:29:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 44,488 KB
最終ジャッジ日時 2024-06-30 16:27:11
合計ジャッジ時間 4,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,224 KB
testcase_01 AC 126 ms
41,412 KB
testcase_02 AC 134 ms
41,216 KB
testcase_03 AC 120 ms
44,488 KB
testcase_04 AC 121 ms
40,992 KB
testcase_05 AC 141 ms
41,808 KB
testcase_06 AC 143 ms
41,344 KB
testcase_07 AC 133 ms
41,048 KB
testcase_08 AC 159 ms
41,592 KB
testcase_09 AC 146 ms
41,908 KB
testcase_10 AC 126 ms
41,420 KB
testcase_11 AC 127 ms
40,988 KB
testcase_12 AC 148 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main{
	int[] L;
	int N;
	long K;

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

	void run() {

		Scanner sc=new Scanner(System.in);

		int A=sc.nextInt();
		int B=sc.nextInt();

		Set<Integer> res=new TreeSet<Integer>();

		for(int i=0;i<=A;i++) {
			for(int j=0;j<=B;j++) {
				int val=i+j*5;


				res.add(val);
			}
		}

		res.remove(0);

		for(Integer I:res) {
			System.out.println(I);
		}

	}

}

0