結果

問題 No.677 10^Nの約数
ユーザー YamaKasaYamaKasa
提出日時 2018-06-06 23:18:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 75,824 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-06-30 10:24:18
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,432 KB
testcase_01 AC 129 ms
41,228 KB
testcase_02 AC 114 ms
40,116 KB
testcase_03 AC 117 ms
40,260 KB
testcase_04 AC 133 ms
41,624 KB
testcase_05 AC 114 ms
40,340 KB
testcase_06 AC 122 ms
40,164 KB
testcase_07 AC 139 ms
41,796 KB
testcase_08 AC 140 ms
41,460 KB
testcase_09 AC 140 ms
41,540 KB
testcase_10 AC 144 ms
41,424 KB
testcase_11 AC 149 ms
41,568 KB
testcase_12 AC 150 ms
41,328 KB
testcase_13 AC 155 ms
41,680 KB
testcase_14 AC 150 ms
41,712 KB
testcase_15 AC 166 ms
41,820 KB
testcase_16 AC 163 ms
41,688 KB
testcase_17 AC 164 ms
41,592 KB
testcase_18 AC 170 ms
41,808 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);
		if(N == 0) {
			System.out.println(1);
			System.exit(0);
		}
		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