結果

問題 No.1235 ζ関数
ユーザー onakasuitacityonakasuitacity
提出日時 2020-10-25 09:56:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,848 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-07-21 17:09:22
合計ジャッジ時間 41,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,839 ms
75,380 KB
testcase_01 AC 1,842 ms
82,944 KB
testcase_02 AC 1,841 ms
76,100 KB
testcase_03 AC 1,840 ms
82,560 KB
testcase_04 AC 1,839 ms
75,220 KB
testcase_05 AC 1,839 ms
76,416 KB
testcase_06 AC 1,839 ms
78,012 KB
testcase_07 AC 1,848 ms
89,600 KB
testcase_08 AC 1,840 ms
80,256 KB
testcase_09 AC 1,842 ms
82,688 KB
testcase_10 AC 1,845 ms
82,944 KB
testcase_11 AC 1,842 ms
82,180 KB
testcase_12 AC 1,841 ms
78,976 KB
testcase_13 AC 1,847 ms
82,080 KB
testcase_14 AC 1,840 ms
77,056 KB
testcase_15 AC 1,842 ms
84,384 KB
testcase_16 AC 1,840 ms
75,384 KB
testcase_17 AC 1,840 ms
80,896 KB
testcase_18 AC 1,839 ms
78,336 KB
testcase_19 AC 1,844 ms
85,904 KB
testcase_20 AC 1,840 ms
78,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time
s = time.time()
sys.setrecursionlimit(2147483647)
input = lambda:sys.stdin.readline().rstrip()
def resolve():
    n = int(input())
    ans = 0
    i = 1
    while time.time() - s < 1.8:
        ans += 1 / pow(i, n)
        i += 1
    print(ans)
resolve()
0