結果

問題 No.677 10^Nの約数
ユーザー uafr_csuafr_cs
提出日時 2018-04-27 22:25:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-27 21:51:52
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,072 KB
testcase_01 AC 129 ms
41,000 KB
testcase_02 AC 129 ms
41,484 KB
testcase_03 AC 124 ms
41,020 KB
testcase_04 AC 129 ms
41,348 KB
testcase_05 AC 130 ms
41,356 KB
testcase_06 AC 135 ms
40,980 KB
testcase_07 AC 137 ms
41,280 KB
testcase_08 AC 124 ms
40,036 KB
testcase_09 AC 131 ms
41,312 KB
testcase_10 AC 138 ms
41,084 KB
testcase_11 AC 137 ms
41,196 KB
testcase_12 AC 140 ms
41,248 KB
testcase_13 AC 145 ms
41,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		TreeSet<Long> set = new TreeSet<Long>();
		
		
		for(long i = 0, two = 1; i <= N; i++, two *= 2) {
			for(int j = 0, five = 1; j <= N; j++, five *= 5) {
				set.add(two * five);
			}
		}
		
		for(final long x : set) {
			System.out.println(x);
		}
	}
}
0