結果

問題 No.542 1円玉と5円玉
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-16 20:44:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 86,848 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-04-28 23:49:00
合計ジャッジ時間 5,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,012 KB
testcase_01 AC 119 ms
40,008 KB
testcase_02 AC 132 ms
41,512 KB
testcase_03 AC 134 ms
41,168 KB
testcase_04 AC 137 ms
41,456 KB
testcase_05 AC 160 ms
41,336 KB
testcase_06 AC 170 ms
41,704 KB
testcase_07 AC 176 ms
41,456 KB
testcase_08 AC 187 ms
41,552 KB
testcase_09 AC 193 ms
41,380 KB
testcase_10 AC 130 ms
40,388 KB
testcase_11 AC 142 ms
41,288 KB
testcase_12 AC 221 ms
41,660 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