結果

問題 No.1235 ζ関数
ユーザー realDivineJKrealDivineJK
提出日時 2020-09-21 15:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 286 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-19 14:21:46
合計ジャッジ時間 34,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 934 ms
10,752 KB
testcase_01 AC 1,528 ms
10,752 KB
testcase_02 TLE -
testcase_03 AC 1,505 ms
10,624 KB
testcase_04 AC 877 ms
10,752 KB
testcase_05 AC 1,985 ms
10,752 KB
testcase_06 AC 1,354 ms
10,624 KB
testcase_07 AC 1,663 ms
10,496 KB
testcase_08 AC 1,519 ms
10,496 KB
testcase_09 AC 1,866 ms
10,624 KB
testcase_10 AC 1,491 ms
10,624 KB
testcase_11 AC 1,540 ms
10,624 KB
testcase_12 AC 1,314 ms
10,752 KB
testcase_13 AC 1,875 ms
10,752 KB
testcase_14 AC 1,793 ms
10,624 KB
testcase_15 AC 1,666 ms
10,752 KB
testcase_16 AC 952 ms
10,752 KB
testcase_17 AC 1,518 ms
10,368 KB
testcase_18 AC 1,404 ms
10,624 KB
testcase_19 AC 1,887 ms
10,624 KB
testcase_20 AC 1,462 ms
10,752 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