結果

問題 No.2829 GCD Divination
ユーザー anonymouslyanonymously
提出日時 2024-08-02 22:50:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-08-02 22:50:07
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,520 KB
testcase_01 AC 33 ms
11,520 KB
testcase_02 AC 33 ms
11,392 KB
testcase_03 AC 33 ms
11,392 KB
testcase_04 AC 42 ms
11,520 KB
testcase_05 AC 192 ms
11,648 KB
testcase_06 AC 171 ms
11,776 KB
testcase_07 AC 156 ms
11,648 KB
testcase_08 AC 149 ms
11,776 KB
testcase_09 AC 145 ms
11,520 KB
testcase_10 AC 33 ms
11,520 KB
testcase_11 AC 32 ms
11,648 KB
testcase_12 AC 33 ms
11,648 KB
testcase_13 AC 33 ms
11,520 KB
testcase_14 AC 33 ms
11,520 KB
testcase_15 AC 33 ms
11,520 KB
testcase_16 AC 33 ms
11,520 KB
testcase_17 AC 33 ms
11,520 KB
testcase_18 AC 33 ms
11,520 KB
testcase_19 AC 33 ms
11,520 KB
testcase_20 AC 32 ms
11,392 KB
testcase_21 AC 34 ms
11,520 KB
testcase_22 AC 31 ms
11,392 KB
testcase_23 AC 37 ms
11,520 KB
testcase_24 AC 32 ms
11,520 KB
testcase_25 AC 30 ms
11,520 KB
testcase_26 AC 32 ms
11,520 KB
testcase_27 AC 32 ms
11,520 KB
testcase_28 AC 32 ms
11,520 KB
testcase_29 AC 33 ms
11,520 KB
testcase_30 AC 32 ms
11,520 KB
testcase_31 AC 31 ms
11,392 KB
testcase_32 AC 31 ms
11,520 KB
testcase_33 AC 32 ms
11,648 KB
testcase_34 AC 33 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from fractions import Fraction


def divisors(n):
    D = {1, n}
    i = 2
    while i*i <= n:
        if n % i == 0:
            D.add(i)
            D.add(n//i)
        i += 1
    return D


def factors(n):
    D = defaultdict(int)
    i = 2
    while i*i <= n:
        if n % i == 0:
            D[i] += 1
            n //= i
        else:
            i += 1
    if n > 1:
        D[n] += 1
    return D


def euler(n):
    e = n
    F = factors(n)
    for p in F:
        e = e*(p-1)//p
    return e


memo = {1: Fraction(0)}


def expected(n):
    if n in memo:
        return memo[n]
    D = divisors(n)
    e = Fraction(1)
    for d in D:
        if d < n:
            e += Fraction(euler(n//d), n) * expected(d)
    memo[n] = e * Fraction(n, n-1)
    return memo[n]


print(float(expected(int(input()))))
0