結果

問題 No.2829 GCD Divination
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-25 02:49:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,283 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 77,036 KB
最終ジャッジ日時 2024-09-25 02:50:02
合計ジャッジ時間 3,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,460 KB
testcase_01 AC 36 ms
53,452 KB
testcase_02 AC 40 ms
58,672 KB
testcase_03 AC 37 ms
52,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
58,292 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
59,060 KB
testcase_32 AC 39 ms
57,884 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2829

import math

def main():
    N = int(input())

    # 約数の列挙
    sqrt_n = int(math.sqrt(N))
    divisors = []
    for p in range(1, sqrt_n + 1):
        if N % p == 0:
            q = N // p
            divisors.append(p)
            if q != p:
                divisors.append(q)
    divisors.sort(reverse=True)

    # 各divisorたちのgcdとその分布を計算
    divisors.sort()
    gcds = []
    for i in range(len(divisors)):
        d = divisors[i]

        a_map = {}
        for j in reversed(range(i + 1)):
            d_ = divisors[j]

            if d % d_ > 0:
                continue
            
            q = d // d_
            for k in range(j + 1, i + 1):
                if d % divisors[k] == 0:
                    q -= a_map[divisors[k]]
            a_map[d_] = q
        gcds.append(a_map)

    dp = {1:0}
    for i in range(len(divisors)):
        s = divisors[i]
        if s == 1:
            continue

        ans = s
        for key, value in gcds[i].items():
            if key == s:
                continue
            ans += value * dp[key]
        ans /= s - 1
        dp[s] = ans
    
    print(dp[N])



                





    
        















if __name__ == "__main__":
    main()
0