結果

問題 No.1737 One to N
ユーザー AsahiAsahi
提出日時 2023-02-06 13:57:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 2,604 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-07-04 18:31:57
合計ジャッジ時間 6,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,264 KB
testcase_01 AC 117 ms
41,532 KB
testcase_02 AC 104 ms
40,120 KB
testcase_03 AC 117 ms
41,388 KB
testcase_04 AC 121 ms
41,696 KB
testcase_05 AC 105 ms
40,240 KB
testcase_06 AC 118 ms
41,124 KB
testcase_07 AC 102 ms
40,104 KB
testcase_08 AC 116 ms
41,144 KB
testcase_09 AC 103 ms
39,980 KB
testcase_10 AC 114 ms
41,156 KB
testcase_11 AC 116 ms
41,320 KB
testcase_12 AC 118 ms
41,364 KB
testcase_13 AC 105 ms
39,944 KB
testcase_14 AC 115 ms
41,340 KB
testcase_15 AC 122 ms
41,652 KB
testcase_16 AC 118 ms
41,352 KB
testcase_17 AC 103 ms
40,280 KB
testcase_18 AC 115 ms
41,180 KB
testcase_19 AC 123 ms
41,508 KB
testcase_20 AC 116 ms
41,180 KB
testcase_21 AC 110 ms
41,312 KB
testcase_22 AC 103 ms
39,996 KB
testcase_23 AC 118 ms
41,156 KB
testcase_24 AC 106 ms
39,984 KB
testcase_25 AC 128 ms
41,480 KB
testcase_26 AC 102 ms
40,456 KB
testcase_27 AC 121 ms
41,152 KB
testcase_28 AC 120 ms
41,468 KB
testcase_29 AC 115 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        long n = sc.nextLong();
        Map<Long,Integer> m = prime_factorization(n);
        long ans = 0;
        for(long val : m.keySet()) ans += val*m.get(val);
        output.print(ans);
        output.flush();
    }
    static Map<Long,Integer> prime_factorization(long val) {
        Map<Long,Integer> map = new HashMap<>();
        for(long i=2; i*i<=val;i++) {
            int count = 0;
            while(val % i == 0) {
                val /= i;
                count++;
            }
            if(count > 0)map.put(i,count);
        }
        if(val != 1L) map.put(val,1);
        return map;
    }
}
0