結果

問題 No.677 10^Nの約数
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-27 09:21:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 61,332 KB
最終ジャッジ日時 2024-10-12 04:26:23
合計ジャッジ時間 8,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
46,412 KB
testcase_01 AC 125 ms
41,284 KB
testcase_02 AC 126 ms
41,680 KB
testcase_03 AC 110 ms
39,896 KB
testcase_04 AC 110 ms
39,880 KB
testcase_05 AC 130 ms
41,056 KB
testcase_06 AC 131 ms
40,100 KB
testcase_07 AC 233 ms
40,100 KB
testcase_08 AC 1,235 ms
41,496 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        for(long i=1; i<=m; i++) {
            if(m % i == 0) System.out.println(i);
        }
    }
}
0