結果
問題 | No.1273 はじめのζ関数 |
ユーザー |
![]() |
提出日時 | 2020-10-30 22:24:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 455 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 75,776 KB |
最終ジャッジ日時 | 2024-07-22 01:31:56 |
合計ジャッジ時間 | 3,919 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 1 WA * 39 |
ソースコード
import mathimport sysinput = sys.stdin.readlinedef zeta(n):if n == 2:return 10**10*(math.pi**2)/6if n == 4:return 10**10*(math.pi**4)/90res = 0for i in range(1, 1000):if i**n > 10**70:breakres += 10**10/i**nreturn resans = 0x = int(input())if x == 2:print(10**6)exit()for i in range(x, x+300):ans += zeta(i)ans -= 300*10**10print(ans)print(int(ans//10**4))