結果

問題 No.542 1円玉と5円玉
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 19:35:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 2,984 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-05-02 04:54:07
合計ジャッジ時間 5,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,052 KB
testcase_01 AC 120 ms
41,092 KB
testcase_02 AC 116 ms
41,400 KB
testcase_03 AC 114 ms
40,800 KB
testcase_04 AC 121 ms
40,844 KB
testcase_05 AC 129 ms
41,180 KB
testcase_06 AC 134 ms
41,164 KB
testcase_07 AC 122 ms
40,484 KB
testcase_08 AC 131 ms
41,540 KB
testcase_09 AC 129 ms
40,440 KB
testcase_10 AC 113 ms
39,988 KB
testcase_11 AC 119 ms
41,216 KB
testcase_12 AC 140 ms
41,008 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