結果
問題 | No.2016 Countdown Divisors |
ユーザー | tenten |
提出日時 | 2024-07-30 10:33:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,845 bytes |
コンパイル時間 | 2,311 ms |
コンパイル使用メモリ | 82,984 KB |
実行使用メモリ | 63,512 KB |
最終ジャッジ日時 | 2024-07-30 10:33:21 |
合計ジャッジ時間 | 6,911 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
57,868 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static Map<Integer, Integer> dp = new HashMap<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); dp.put(1, 1); dp.put(2, 2); String result = IntStream.range(0, n) .mapToObj(i -> String.valueOf(dfw(sc.nextInt()))) .collect(Collectors.joining("\n")); System.out.println(result); } static int dfw(int x) { if (!dp.containsKey(x)) { int count = 0;; for (int i = 1; i * i <= x; i++) { if (x % i == 0) { if (i * i == x) { count++; } else { count += 2; } } } dp.put(x, dfw(x - count)); } return dp.get(x); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }