結果

問題 No.677 10^Nの約数
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-19 20:50:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-10-05 02:18:23
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,804 KB
testcase_01 AC 110 ms
53,828 KB
testcase_02 AC 110 ms
53,948 KB
testcase_03 AC 119 ms
53,964 KB
testcase_04 AC 107 ms
52,892 KB
testcase_05 AC 108 ms
52,928 KB
testcase_06 AC 116 ms
53,680 KB
testcase_07 AC 117 ms
54,076 KB
testcase_08 AC 113 ms
53,964 KB
testcase_09 AC 115 ms
53,732 KB
testcase_10 AC 105 ms
52,584 KB
testcase_11 AC 120 ms
53,732 KB
testcase_12 AC 120 ms
53,928 KB
testcase_13 AC 123 ms
54,152 KB
testcase_14 AC 118 ms
53,644 KB
testcase_15 AC 131 ms
53,896 KB
testcase_16 AC 127 ms
54,296 KB
testcase_17 AC 124 ms
54,076 KB
testcase_18 AC 158 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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