結果

問題 No.2829 GCD Divination
ユーザー ntudantuda
提出日時 2024-08-03 12:10:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,864 KB
最終ジャッジ日時 2024-08-03 12:10:11
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,176 KB
testcase_01 AC 38 ms
53,948 KB
testcase_02 AC 42 ms
60,436 KB
testcase_03 AC 40 ms
54,868 KB
testcase_04 AC 54 ms
65,356 KB
testcase_05 AC 118 ms
76,500 KB
testcase_06 AC 108 ms
76,564 KB
testcase_07 AC 94 ms
76,864 KB
testcase_08 AC 102 ms
76,792 KB
testcase_09 AC 88 ms
74,908 KB
testcase_10 AC 42 ms
59,808 KB
testcase_11 AC 40 ms
59,040 KB
testcase_12 AC 40 ms
60,972 KB
testcase_13 AC 39 ms
59,812 KB
testcase_14 AC 38 ms
59,960 KB
testcase_15 AC 41 ms
60,932 KB
testcase_16 AC 38 ms
59,140 KB
testcase_17 AC 40 ms
60,460 KB
testcase_18 AC 40 ms
59,940 KB
testcase_19 AC 39 ms
59,352 KB
testcase_20 AC 37 ms
54,188 KB
testcase_21 AC 44 ms
63,160 KB
testcase_22 AC 40 ms
59,900 KB
testcase_23 AC 52 ms
65,328 KB
testcase_24 AC 40 ms
59,816 KB
testcase_25 AC 40 ms
60,128 KB
testcase_26 AC 42 ms
60,272 KB
testcase_27 AC 40 ms
60,340 KB
testcase_28 AC 41 ms
59,420 KB
testcase_29 AC 40 ms
60,424 KB
testcase_30 AC 40 ms
61,412 KB
testcase_31 AC 38 ms
59,956 KB
testcase_32 AC 43 ms
60,356 KB
testcase_33 AC 47 ms
61,592 KB
testcase_34 AC 43 ms
60,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def make_divisors(n):
    divisors = []
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n // i)
        i += 1
    divisors.sort()
    return divisors

N = int(input())
D = make_divisors(N)
dic = defaultdict(int)
for i, d in enumerate(D[1:], start=1):
    dic2 = defaultdict(int)
    D2 = make_divisors(d)
    for d2 in reversed(D2):
        tmp = d // d2
        for d3 in reversed(D2):
            if d2 == d3:
                break
            if d3 % d2 == 0:
                tmp -= dic2[d3]
        dic2[d2] = tmp

    tmp = 0
    for d2 in D2[1:-1]:
        tmp += dic[d2] * dic2[d2] / d
    dic[d] = (tmp + 1) * d / (d - 1)

print(dic[N])
0