結果

問題 No.677 10^Nの約数
ユーザー YamaKasaYamaKasa
提出日時 2018-06-06 23:17:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 75,468 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-06-30 10:23:50
合計ジャッジ時間 5,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 131 ms
54,056 KB
testcase_02 AC 133 ms
53,968 KB
testcase_03 AC 133 ms
54,236 KB
testcase_04 AC 137 ms
54,216 KB
testcase_05 AC 137 ms
54,312 KB
testcase_06 AC 138 ms
54,288 KB
testcase_07 AC 140 ms
54,216 KB
testcase_08 AC 147 ms
54,200 KB
testcase_09 AC 143 ms
54,196 KB
testcase_10 AC 145 ms
53,992 KB
testcase_11 AC 151 ms
54,204 KB
testcase_12 AC 151 ms
54,188 KB
testcase_13 AC 154 ms
54,016 KB
testcase_14 AC 153 ms
53,412 KB
testcase_15 AC 168 ms
54,060 KB
testcase_16 AC 177 ms
54,616 KB
testcase_17 AC 167 ms
54,320 KB
testcase_18 AC 170 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		scan.close();
		Set<Long> set = new TreeSet<Long>();
		Set<Long> set2 = new TreeSet<Long>();
		Long []M = {1L, 2L, 5L, 10L};
		set.add(1L);
		set.add(2L);
		set.add(5L);
		set.add(10L);

		for(int i = 0; i < N - 1; i++) {
			for(Long t1 : set) {
				for(Long t2 : M) {
					long t3 = t1 * t2;
					set2.add(t3);
				}
			}
			for(Long k : set2) {
				set.add(k);
			}
			set2.clear();
		}
		for(long t : set) {
			System.out.println(t);
		}
	}
}
0