結果

問題 No.2829 GCD Divination
ユーザー ShirotsumeShirotsume
提出日時 2024-08-02 21:48:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-08-02 21:48:18
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,544 KB
testcase_01 AC 44 ms
55,040 KB
testcase_02 AC 47 ms
60,672 KB
testcase_03 AC 43 ms
55,168 KB
testcase_04 WA -
testcase_05 TLE -
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 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
def solve(x):
    if x == 1:
        return 0
    xi = 1 / x
    ans = 1
    for i in range(2, x + 1):
        if i * i > x:
            break
        if x % i == 0:
            ans += xi * solve(x // i)
            if x // i != i:
                ans += xi * solve(i)
    return ans * x / (x - 1)

print(solve(n))
        
0