結果

問題 No.677 10^Nの約数
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-27 09:31:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-10-12 04:26:57
合計ジャッジ時間 5,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,880 KB
testcase_01 AC 105 ms
52,772 KB
testcase_02 AC 119 ms
54,068 KB
testcase_03 AC 120 ms
54,104 KB
testcase_04 AC 129 ms
54,036 KB
testcase_05 AC 126 ms
54,060 KB
testcase_06 AC 125 ms
53,940 KB
testcase_07 AC 117 ms
54,032 KB
testcase_08 AC 115 ms
52,980 KB
testcase_09 AC 129 ms
53,748 KB
testcase_10 AC 120 ms
53,028 KB
testcase_11 AC 134 ms
53,916 KB
testcase_12 AC 118 ms
52,924 KB
testcase_13 AC 131 ms
52,936 KB
testcase_14 AC 127 ms
53,728 KB
testcase_15 AC 130 ms
54,052 KB
testcase_16 AC 120 ms
52,948 KB
testcase_17 AC 138 ms
54,412 KB
testcase_18 AC 146 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long n = in.nextLong();

        // TLE
        // long m = (long)Math.pow(10, n);
        // for(long i=1; i<=m; i++) {
        //     if(m % i == 0) System.out.println(i);
        // }

        int c = (int)Math.pow(n+1, 2);
        long[] ans = new long[c];

        int index = 0;
        for(int i=0; i<=n; i++) {
            long t1 = (long)Math.pow(2,i);
            for(int j=0; j<=n; j++) {
                long t2 = (long)Math.pow(5,j);
                ans[index++] = t1 * t2;
            }
        }

        Arrays.sort(ans);
        for(int i=0; i<c; i++) System.out.println(ans[i]);
    }
}
0