結果

問題 No.542 1円玉と5円玉
ユーザー villachvillach
提出日時 2017-09-29 16:12:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 3,317 ms
コンパイル使用メモリ 76,160 KB
実行使用メモリ 42,124 KB
最終ジャッジ日時 2024-11-15 19:54:31
合計ジャッジ時間 6,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,452 KB
testcase_01 AC 133 ms
41,472 KB
testcase_02 AC 129 ms
41,156 KB
testcase_03 AC 113 ms
40,392 KB
testcase_04 AC 127 ms
41,332 KB
testcase_05 AC 139 ms
40,780 KB
testcase_06 AC 159 ms
41,604 KB
testcase_07 AC 162 ms
41,468 KB
testcase_08 AC 181 ms
41,692 KB
testcase_09 AC 164 ms
41,420 KB
testcase_10 AC 135 ms
41,580 KB
testcase_11 AC 139 ms
41,528 KB
testcase_12 AC 211 ms
42,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class N542 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int ichiYen = sc.nextInt();
		int goYen = sc.nextInt();
		int i, j;
		ArrayList<Integer> array = new ArrayList<Integer>();
		for(i = 0;i <= ichiYen;++i){
			for(j = 0;j <= goYen;++j){
				if(!array.contains(i + (j * 5)) && (i + (j * 5)) != 0) array.add(i + (j * 5));
			}
		}
		Collections.sort(array);
		for(int k:array){
			System.out.println(k);
		}
	}
}
0