結果

問題 No.1235 ζ関数
ユーザー realDivineJKrealDivineJK
提出日時 2020-09-21 15:06:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 75,996 KB
最終ジャッジ日時 2024-06-24 11:42:50
合計ジャッジ時間 4,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
75,584 KB
testcase_01 AC 151 ms
75,508 KB
testcase_02 AC 169 ms
75,932 KB
testcase_03 AC 154 ms
75,640 KB
testcase_04 AC 140 ms
75,536 KB
testcase_05 AC 180 ms
75,696 KB
testcase_06 AC 235 ms
75,980 KB
testcase_07 AC 164 ms
75,888 KB
testcase_08 AC 153 ms
75,872 KB
testcase_09 AC 163 ms
75,956 KB
testcase_10 AC 212 ms
75,792 KB
testcase_11 AC 194 ms
75,988 KB
testcase_12 AC 147 ms
75,712 KB
testcase_13 AC 180 ms
75,540 KB
testcase_14 AC 155 ms
75,996 KB
testcase_15 AC 153 ms
75,656 KB
testcase_16 AC 142 ms
75,684 KB
testcase_17 AC 154 ms
75,980 KB
testcase_18 AC 179 ms
75,784 KB
testcase_19 AC 156 ms
75,692 KB
testcase_20 AC 153 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
def doubling(n, m):
    y = 1
    bas = n
    tmp = m
    while tmp:
        if tmp % 2:
            y *= bas
        bas *= bas
        tmp >>= 1
        if y == 0:
            break
    return y
S = 0
for i in range(1000000, 0, -1):
    S += doubling(1/i, N)
print(S)
0