結果

問題 No.677 10^Nの約数
ユーザー asahi32942398asahi32942398
提出日時 2018-04-27 23:20:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 76,596 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-27 22:18:05
合計ジャッジ時間 5,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,276 KB
testcase_01 AC 114 ms
39,896 KB
testcase_02 AC 129 ms
41,300 KB
testcase_03 AC 126 ms
41,508 KB
testcase_04 AC 125 ms
41,292 KB
testcase_05 AC 128 ms
41,784 KB
testcase_06 AC 133 ms
41,172 KB
testcase_07 AC 139 ms
41,784 KB
testcase_08 AC 138 ms
41,300 KB
testcase_09 AC 124 ms
41,136 KB
testcase_10 AC 134 ms
41,204 KB
testcase_11 AC 139 ms
41,376 KB
testcase_12 AC 139 ms
41,496 KB
testcase_13 AC 142 ms
41,216 KB
testcase_14 AC 142 ms
41,500 KB
testcase_15 AC 145 ms
41,304 KB
testcase_16 AC 142 ms
41,012 KB
testcase_17 AC 139 ms
41,052 KB
testcase_18 AC 143 ms
40,504 KB
権限があれば一括ダウンロードができます

ソースコード

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++){
                long two =1;
                long five = 1;
                if(i!=0){
                for(int tc=0;tc<i;tc++){
                 two *=2;
                }
            }
            if(j!=0){
                for(int fc=0;fc<j;fc++){
                five *= 5;
                }
            }
                list.add(two*five);
            }
        }
       Collections.sort(list);
       for(long m:list){
           System.out.println(m);
       }
    }
}
0