結果
問題 | No.677 10^Nの約数 |
ユーザー | YamaKasa |
提出日時 | 2018-06-06 23:13:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 2,148 ms |
コンパイル使用メモリ | 75,440 KB |
実行使用メモリ | 68,096 KB |
最終ジャッジ日時 | 2024-06-30 10:24:09 |
合計ジャッジ時間 | 9,704 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 130 ms
41,540 KB |
testcase_02 | AC | 117 ms
40,424 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import java.util.Scanner; import java.util.Set; import java.util.TreeSet; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); scan.close(); Set<Long> set = new TreeSet<Long>(); Set<Long> set2 = new TreeSet<Long>(); set.add(1L); set.add(2L); set.add(5L); set.add(10L); for(int i = 0; i < N - 1; i++) { for(Long t1 : set) { for(Long t2 : set) { long t3 = t1 * t2; set2.add(t3); } } for(Long k : set2) { set.add(k); } set2.clear(); } for(long t : set) { System.out.println(t); } } }