結果

問題 No.677 10^Nの約数
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-18 01:30:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-06-28 13:40:35
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,956 KB
testcase_01 AC 134 ms
53,852 KB
testcase_02 AC 138 ms
53,860 KB
testcase_03 AC 136 ms
53,888 KB
testcase_04 AC 134 ms
54,056 KB
testcase_05 AC 135 ms
53,928 KB
testcase_06 AC 136 ms
53,908 KB
testcase_07 AC 123 ms
52,844 KB
testcase_08 AC 138 ms
53,808 KB
testcase_09 AC 145 ms
54,028 KB
testcase_10 AC 140 ms
54,068 KB
testcase_11 AC 147 ms
54,156 KB
testcase_12 AC 131 ms
52,956 KB
testcase_13 AC 148 ms
54,224 KB
testcase_14 AC 147 ms
53,768 KB
testcase_15 AC 150 ms
54,244 KB
testcase_16 AC 157 ms
54,200 KB
testcase_17 AC 158 ms
53,972 KB
testcase_18 AC 153 ms
54,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		Set<Long> set = new TreeSet<>();
		for (int i=0; i<=n; i++) {
			for (int j=0; j<=n; j++) {
				set.add((long)(Math.pow(2,i)*Math.pow(5,j)));
			}
		}
		set.forEach(out::println);
	}
}
0