結果

問題 No.677 10^Nの約数
ユーザー watarimaycry2watarimaycry2
提出日時 2019-12-09 22:18:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 2,850 ms
コンパイル使用メモリ 76,832 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-23 07:01:03
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,428 KB
testcase_01 AC 102 ms
40,092 KB
testcase_02 AC 110 ms
41,200 KB
testcase_03 AC 113 ms
41,032 KB
testcase_04 AC 112 ms
41,252 KB
testcase_05 AC 114 ms
41,488 KB
testcase_06 AC 110 ms
41,336 KB
testcase_07 AC 105 ms
40,764 KB
testcase_08 AC 116 ms
40,504 KB
testcase_09 AC 107 ms
40,128 KB
testcase_10 AC 115 ms
41,312 KB
testcase_11 AC 120 ms
40,976 KB
testcase_12 AC 126 ms
41,280 KB
testcase_13 AC 140 ms
41,384 KB
testcase_14 AC 121 ms
40,124 KB
testcase_15 AC 115 ms
40,360 KB
testcase_16 AC 118 ms
40,416 KB
testcase_17 AC 140 ms
41,512 KB
testcase_18 AC 126 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
        static Scanner sc = new Scanner(System.in);
        static void myout(Object t){System.out.println(t);}
        static String getStr(){return sc.next();}
        static int getInt(){return sc.nextInt();}
        static Long getLong(){return sc.nextLong();}
        static boolean isNext(){return sc.hasNext();}
        public static void main(String[] args){
          long N = getInt();
          ArrayList<Long> list = new ArrayList<Long>();
          
          for(int i = 0; i <= N; i++){
            for(int j = 0; j <= N; j++){
              list.add((long)(Math.pow(2,i) * Math.pow(5,j)));
            }
          }
          Collections.sort(list,Comparator.naturalOrder());
          for(int i = 0; i < list.size(); i++){
            myout(list.get(i));
          }
          
        }
        //便利メソッド追加枠ここから

        //便利メソッド追加枠ここまで
}
0