結果

問題 No.542 1円玉と5円玉
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 23:54:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-11-06 17:13:09
合計ジャッジ時間 5,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,868 KB
testcase_01 AC 135 ms
53,956 KB
testcase_02 AC 135 ms
53,884 KB
testcase_03 AC 131 ms
54,188 KB
testcase_04 AC 133 ms
53,664 KB
testcase_05 AC 143 ms
54,204 KB
testcase_06 AC 156 ms
54,148 KB
testcase_07 AC 154 ms
54,208 KB
testcase_08 AC 161 ms
54,068 KB
testcase_09 AC 154 ms
54,328 KB
testcase_10 AC 137 ms
53,880 KB
testcase_11 AC 145 ms
53,896 KB
testcase_12 AC 161 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int one = sc.nextInt();
		int five = sc.nextInt();
		
		int max = 0;
		for (int i=0; i<=five; i++) {
			for (int j=0; j<=one; j++) {
				if (i==0&&j==0 || 5*i+j<=max) {continue;}
				System.out.println(5*i+j);
				if (j==one) {max = 5*i+j;}
			}
		}
	}
}
0