結果

問題 No.542 1円玉と5円玉
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:33:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-11-22 03:41:22
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,248 KB
testcase_01 AC 130 ms
41,180 KB
testcase_02 AC 128 ms
41,224 KB
testcase_03 AC 119 ms
40,020 KB
testcase_04 AC 117 ms
40,152 KB
testcase_05 AC 151 ms
41,432 KB
testcase_06 AC 161 ms
41,776 KB
testcase_07 AC 161 ms
41,644 KB
testcase_08 AC 158 ms
41,376 KB
testcase_09 AC 157 ms
41,604 KB
testcase_10 AC 138 ms
41,068 KB
testcase_11 AC 142 ms
41,576 KB
testcase_12 AC 188 ms
41,896 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