結果

問題 No.677 10^Nの約数
ユーザー tentententen
提出日時 2020-09-03 20:22:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 2,743 ms
コンパイル使用メモリ 76,052 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-05-03 03:37:40
合計ジャッジ時間 5,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,192 KB
testcase_01 AC 112 ms
39,880 KB
testcase_02 AC 114 ms
41,500 KB
testcase_03 AC 103 ms
41,292 KB
testcase_04 AC 111 ms
40,204 KB
testcase_05 AC 112 ms
41,008 KB
testcase_06 AC 117 ms
41,228 KB
testcase_07 AC 102 ms
41,552 KB
testcase_08 AC 111 ms
40,072 KB
testcase_09 AC 105 ms
40,124 KB
testcase_10 AC 114 ms
40,012 KB
testcase_11 AC 119 ms
41,412 KB
testcase_12 AC 116 ms
41,132 KB
testcase_13 AC 112 ms
41,248 KB
testcase_14 AC 107 ms
41,628 KB
testcase_15 AC 118 ms
40,296 KB
testcase_16 AC 110 ms
40,304 KB
testcase_17 AC 117 ms
41,412 KB
testcase_18 AC 114 ms
41,756 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