結果

問題 No.542 1円玉と5円玉
ユーザー tsunabittsunabit
提出日時 2019-06-16 18:49:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 3,652 ms
コンパイル使用メモリ 76,272 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-05-03 12:49:11
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,700 KB
testcase_01 AC 125 ms
53,992 KB
testcase_02 AC 126 ms
53,956 KB
testcase_03 AC 123 ms
53,980 KB
testcase_04 AC 127 ms
53,976 KB
testcase_05 AC 143 ms
54,196 KB
testcase_06 AC 157 ms
54,072 KB
testcase_07 AC 157 ms
54,220 KB
testcase_08 AC 147 ms
54,244 KB
testcase_09 AC 150 ms
54,328 KB
testcase_10 AC 129 ms
54,176 KB
testcase_11 AC 136 ms
53,832 KB
testcase_12 AC 170 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No542 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt(), b = sc.nextInt();
    	
    	HashSet<Integer> hs = new HashSet<Integer>();
    	for(int i = 0; i <= a; i++) {
    		for(int j = 0; j <= b; j++) {
    			hs.add(i + (j * 5));
    		}
    	}
    	ArrayList<Integer> k = new ArrayList<Integer>();
    	for(int h : hs) {
    		k.add(h);
    	}
    	Collections.sort(k);
    	k.remove(0);
    	
    	for(int f : k) {
    		System.out.println(f);
    	}
    }
}
0