結果

問題 No.542 1円玉と5円玉
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:33:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-05-01 21:09:34
合計ジャッジ時間 4,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,012 KB
testcase_01 AC 99 ms
40,008 KB
testcase_02 AC 100 ms
40,012 KB
testcase_03 AC 111 ms
40,108 KB
testcase_04 AC 109 ms
41,200 KB
testcase_05 AC 133 ms
41,224 KB
testcase_06 AC 146 ms
41,340 KB
testcase_07 AC 138 ms
41,348 KB
testcase_08 AC 134 ms
40,784 KB
testcase_09 AC 131 ms
41,144 KB
testcase_10 AC 105 ms
39,984 KB
testcase_11 AC 115 ms
41,244 KB
testcase_12 AC 140 ms
40,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int A = sc.nextInt();
		final int B = sc.nextInt();
		
		TreeSet<Integer> set = new TreeSet<Integer>();
		for(int b = 0; b <= B; b++){
			for(int a = 0; a <= A; a++){
				final int money = b * 5 + a;
				if(money == 0){ continue; }
				
				set.add(money);
			}
		}
		
		for(final int money : set){
			System.out.println(money);
		}
	}
}
0