結果
問題 | No.677 10^Nの約数 |
ユーザー | sudo_yum |
提出日時 | 2018-06-06 14:43:53 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 2,012 ms |
コンパイル使用メモリ | 74,476 KB |
実行使用メモリ | 61,288 KB |
最終ジャッジ日時 | 2024-06-30 10:15:22 |
合計ジャッジ時間 | 8,185 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
61,212 KB |
testcase_01 | AC | 131 ms
54,084 KB |
testcase_02 | AC | 131 ms
53,996 KB |
testcase_03 | AC | 132 ms
54,500 KB |
testcase_04 | AC | 132 ms
54,108 KB |
testcase_05 | AC | 138 ms
54,120 KB |
testcase_06 | AC | 151 ms
54,360 KB |
testcase_07 | AC | 252 ms
54,124 KB |
testcase_08 | AC | 1,243 ms
54,160 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.*; public class Main{ static StringBuilder sb = new StringBuilder(""); public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); double jou = Math.pow(10.0,N); long joui = (long)jou; for (long i=1;i<=joui ;i++ ) { if (joui%i==0) { System.out.println(i); }else{ } } } }