結果

問題 No.542 1円玉と5円玉
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 19:35:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 75,904 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-22 15:44:11
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,940 KB
testcase_01 AC 129 ms
41,268 KB
testcase_02 AC 130 ms
41,420 KB
testcase_03 AC 127 ms
41,060 KB
testcase_04 AC 128 ms
41,196 KB
testcase_05 AC 141 ms
40,900 KB
testcase_06 AC 148 ms
41,268 KB
testcase_07 AC 150 ms
41,532 KB
testcase_08 AC 149 ms
41,016 KB
testcase_09 AC 149 ms
41,468 KB
testcase_10 AC 134 ms
41,168 KB
testcase_11 AC 138 ms
40,828 KB
testcase_12 AC 153 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con542 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt() , b = s.nextInt() , max = a + b * 5;
		s.close();

		if(a < 4){
			for(int i = 0;i <= b;i++){
				for(int j = 0;j <= a;j++){
					if(i + j != 0){
						System.out.println(i*5 + j);
					}
				}
			}
		}else{
			for(int i = 1;i <= max;i++){
				System.out.println(i);
			}
		}
	}

}
0