結果

問題 No.1235 ζ関数
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-14 02:56:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 60,044 KB
最終ジャッジ日時 2024-09-28 01:55:59
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,692 KB
testcase_01 AC 43 ms
58,564 KB
testcase_02 AC 43 ms
58,628 KB
testcase_03 AC 41 ms
58,476 KB
testcase_04 AC 42 ms
58,696 KB
testcase_05 AC 45 ms
58,480 KB
testcase_06 AC 45 ms
58,476 KB
testcase_07 AC 43 ms
59,220 KB
testcase_08 AC 44 ms
59,820 KB
testcase_09 AC 42 ms
58,828 KB
testcase_10 AC 42 ms
59,728 KB
testcase_11 AC 42 ms
59,252 KB
testcase_12 AC 44 ms
60,044 KB
testcase_13 AC 43 ms
58,404 KB
testcase_14 AC 42 ms
58,368 KB
testcase_15 AC 43 ms
58,280 KB
testcase_16 AC 43 ms
58,876 KB
testcase_17 AC 42 ms
58,236 KB
testcase_18 AC 43 ms
58,348 KB
testcase_19 AC 42 ms
58,624 KB
testcase_20 AC 41 ms
59,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1235


def main():
    N = int(input())
    answer = 0
    for i in range(1, 100001):
        f = pow(1 / i, N)
        answer += f
    print(answer)



if __name__ == "__main__":
    main()
0