結果

問題 No.542 1円玉と5円玉
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-16 20:44:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 85,808 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2024-11-17 21:13:16
合計ジャッジ時間 4,673 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,648 KB
testcase_01 AC 124 ms
53,852 KB
testcase_02 AC 130 ms
54,048 KB
testcase_03 AC 126 ms
53,840 KB
testcase_04 AC 123 ms
54,172 KB
testcase_05 AC 156 ms
53,988 KB
testcase_06 AC 171 ms
54,192 KB
testcase_07 AC 163 ms
54,604 KB
testcase_08 AC 183 ms
54,332 KB
testcase_09 AC 178 ms
54,432 KB
testcase_10 AC 130 ms
54,052 KB
testcase_11 AC 134 ms
54,212 KB
testcase_12 AC 184 ms
53,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		List<Integer> list = new ArrayList<>();
		for(int i = 0 ; i <= a ; i++) {
			for(int j = 0 ; j <= b ; j++) {
				if(1 * i + 5 * j == 0) continue;
				if(!list.contains(1 * i + 5 * j)) {
					list.add(1 * i + 5 * j);
				}
			}
		}
		Collections.sort(list);
		for(int i : list) {
			System.out.println(i);
		}
 	}
}
0