結果

問題 No.542 1円玉と5円玉
ユーザー heyanxxheyanxx
提出日時 2019-07-05 09:16:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 3,588 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 51,824 KB
最終ジャッジ日時 2024-09-19 20:08:45
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,272 KB
testcase_01 AC 52 ms
50,280 KB
testcase_02 AC 54 ms
49,760 KB
testcase_03 AC 53 ms
50,032 KB
testcase_04 AC 54 ms
50,352 KB
testcase_05 AC 63 ms
50,136 KB
testcase_06 AC 82 ms
50,884 KB
testcase_07 AC 84 ms
50,904 KB
testcase_08 AC 78 ms
51,336 KB
testcase_09 AC 87 ms
51,172 KB
testcase_10 AC 56 ms
50,036 KB
testcase_11 AC 56 ms
50,392 KB
testcase_12 AC 103 ms
51,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.TreeSet;

public class Yukicoder542 {

	public static void main(String[] args) throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		
		String[]str=input();
		TreeSet<Integer>set=new TreeSet<Integer>();
		int A=Integer.parseInt(str[0]);
		int B=Integer.parseInt(str[1]);
		if(A!=0) {
			set.add(1);
		}else if(B!=0){
			set.add(5);
		}
		for(int i=1;i<=A;i++) {
			set.add(i);
		}
		for(int i=1;i<=B;i++) {
			for(int j=1;j<=A;j++) {
				set.add(j+i*5);
			}
			set.add(i*5);
		}
		for(int i:set) {
			System.out.println(i);
		}
		//System.out.println(set.toString());

	}
	public static  String[] input() throws IOException {
		BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
		
		String str=br.readLine();
		String[]str2=str.split(" ");
		
		return str2;
	}
}
0