結果

問題 No.542 1円玉と5円玉
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 08:55:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-05-10 03:07:49
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,272 KB
testcase_01 AC 134 ms
41,312 KB
testcase_02 AC 116 ms
40,060 KB
testcase_03 AC 116 ms
40,076 KB
testcase_04 AC 118 ms
40,152 KB
testcase_05 AC 131 ms
40,452 KB
testcase_06 AC 163 ms
41,428 KB
testcase_07 AC 156 ms
41,960 KB
testcase_08 AC 156 ms
41,840 KB
testcase_09 AC 152 ms
41,620 KB
testcase_10 AC 145 ms
41,424 KB
testcase_11 AC 121 ms
40,240 KB
testcase_12 AC 153 ms
41,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No542 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt(); //1円玉の枚数
		int B = sc.nextInt(); //5円玉の枚数
		
		for(int i = 0;i <= B;i++) {
			for(int j = 0;j <= A;j++) {
				if(i != B && j == 5) {
					break;
				}else {
					if(i + j != 0) {
						System.out.println(j  + i * 5);
					}
				}
			}
		}
	}
}
0