結果

問題 No.677 10^Nの約数
ユーザー asahi32942398asahi32942398
提出日時 2018-04-27 23:14:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 76,260 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-06-27 22:14:21
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,360 KB
testcase_01 AC 120 ms
39,876 KB
testcase_02 AC 135 ms
41,288 KB
testcase_03 AC 136 ms
41,232 KB
testcase_04 AC 132 ms
41,164 KB
testcase_05 AC 124 ms
40,036 KB
testcase_06 AC 137 ms
41,176 KB
testcase_07 AC 137 ms
41,488 KB
testcase_08 AC 140 ms
41,160 KB
testcase_09 AC 141 ms
41,416 KB
testcase_10 AC 141 ms
41,412 KB
testcase_11 AC 148 ms
41,644 KB
testcase_12 AC 146 ms
41,380 KB
testcase_13 AC 133 ms
40,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
       
        List<Long> list = new ArrayList<>();
       for(long i=0;i<n+1;i++){
            for(long j=0;j<n+1;j++){
                int two = (int)Math.pow(2,i);
                int five = (int)Math.pow(5,j);
                list.add((long)two*(long)five);
            }
        }
       Collections.sort(list);
       for(long m:list){
           System.out.println(m);
       }
    }
}
0