結果

問題 No.542 1円玉と5円玉
ユーザー tetsutetsu
提出日時 2017-11-10 00:56:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 3,827 ms
コンパイル使用メモリ 84,540 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-05-03 09:16:31
合計ジャッジ時間 6,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,412 KB
testcase_01 AC 133 ms
40,928 KB
testcase_02 AC 130 ms
41,208 KB
testcase_03 AC 133 ms
41,312 KB
testcase_04 AC 129 ms
41,412 KB
testcase_05 AC 156 ms
41,580 KB
testcase_06 AC 167 ms
41,600 KB
testcase_07 AC 170 ms
41,460 KB
testcase_08 AC 161 ms
41,644 KB
testcase_09 AC 161 ms
41,304 KB
testcase_10 AC 141 ms
41,084 KB
testcase_11 AC 145 ms
41,496 KB
testcase_12 AC 165 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P542 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt();
		int B = sc.nextInt();
		Set<Integer> s = new TreeSet<>();
		for(int i=0; i<=A; i++) {
			for(int j=0; j<=B; j++) {
				if(i==0&&j==0) continue;
				s.add(i+5*j);
			}
		}
		for(int x : s) {
			System.out.println(x);
		}
	}

}
0