結果

問題 No.677 10^Nの約数
ユーザー htensaihtensai
提出日時 2019-11-12 08:23:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 79,040 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-09-17 10:59:33
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,968 KB
testcase_01 AC 134 ms
54,164 KB
testcase_02 AC 134 ms
54,092 KB
testcase_03 AC 132 ms
54,060 KB
testcase_04 AC 118 ms
52,656 KB
testcase_05 AC 129 ms
54,068 KB
testcase_06 AC 119 ms
52,632 KB
testcase_07 AC 134 ms
53,780 KB
testcase_08 AC 134 ms
53,996 KB
testcase_09 AC 133 ms
54,260 KB
testcase_10 AC 133 ms
54,000 KB
testcase_11 AC 133 ms
53,968 KB
testcase_12 AC 135 ms
54,396 KB
testcase_13 AC 135 ms
53,896 KB
testcase_14 AC 135 ms
53,952 KB
testcase_15 AC 138 ms
54,432 KB
testcase_16 AC 139 ms
53,716 KB
testcase_17 AC 137 ms
54,044 KB
testcase_18 AC 137 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		PriorityQueue<Long> queue = new PriorityQueue<>();
		for (int i = 0; i <= n; i++) {
		    for (int j = 0; j <= n; j++) {
		        queue.add((long)(Math.pow(2, i) * Math.pow(5, j)));
		    }
		}
		StringBuilder sb = new StringBuilder();
		while (queue.size() > 0) {
		    sb.append(queue.poll()).append("\n");
		}
		System.out.print(sb);
   }
}

0