結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,952 KB
testcase_01 AC 119 ms
53,748 KB
testcase_02 AC 120 ms
54,244 KB
testcase_03 AC 121 ms
54,220 KB
testcase_04 AC 125 ms
53,860 KB
testcase_05 AC 146 ms
54,220 KB
testcase_06 AC 158 ms
53,776 KB
testcase_07 AC 163 ms
54,200 KB
testcase_08 AC 162 ms
53,408 KB
testcase_09 AC 160 ms
54,300 KB
testcase_10 AC 123 ms
54,108 KB
testcase_11 AC 127 ms
54,028 KB
testcase_12 AC 179 ms
54,196 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