結果

問題 No.677 10^Nの約数
ユーザー tentententen
提出日時 2020-09-03 20:22:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 86,356 KB
実行使用メモリ 41,872 KB
最終ジャッジ日時 2024-11-24 00:32:26
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,044 KB
testcase_01 AC 126 ms
41,128 KB
testcase_02 AC 126 ms
41,212 KB
testcase_03 AC 125 ms
41,380 KB
testcase_04 AC 113 ms
41,424 KB
testcase_05 AC 125 ms
41,376 KB
testcase_06 AC 129 ms
41,664 KB
testcase_07 AC 135 ms
41,444 KB
testcase_08 AC 132 ms
41,632 KB
testcase_09 AC 115 ms
40,188 KB
testcase_10 AC 129 ms
41,600 KB
testcase_11 AC 128 ms
41,404 KB
testcase_12 AC 127 ms
41,872 KB
testcase_13 AC 131 ms
41,352 KB
testcase_14 AC 134 ms
41,228 KB
testcase_15 AC 129 ms
41,332 KB
testcase_16 AC 132 ms
41,256 KB
testcase_17 AC 134 ms
41,616 KB
testcase_18 AC 118 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	TreeSet<Long> ans = new TreeSet<>();
    	for (int i = 0; i <= n; i++) {
    	    long value = pow(2, i);
    	    for (int j = 0; j <= n; j++) {
    	        ans.add(value * pow(5, j));
    	    }
    	}
    	StringBuilder sb = new StringBuilder();
    	for (long x : ans) {
    	    sb.append(x).append("\n");
    	}
    	System.out.print(sb);
	}
	
	static long pow(long x, long y) {
	    if (y == 0) {
	        return 1;
	    } else {
	        return x * pow(x, y - 1);
	    }
	}
}
0