結果

問題 No.1273 はじめのζ関数
ユーザー rusa_dkrusa_dk
提出日時 2020-10-30 22:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-22 02:33:51
合計ジャッジ時間 9,805 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
75,520 KB
testcase_01 AC 192 ms
75,648 KB
testcase_02 AC 192 ms
75,264 KB
testcase_03 AC 192 ms
75,444 KB
testcase_04 AC 190 ms
75,264 KB
testcase_05 AC 191 ms
75,440 KB
testcase_06 AC 192 ms
75,520 KB
testcase_07 AC 191 ms
75,520 KB
testcase_08 AC 189 ms
75,728 KB
testcase_09 AC 190 ms
75,492 KB
testcase_10 AC 190 ms
75,520 KB
testcase_11 AC 190 ms
75,520 KB
testcase_12 AC 191 ms
75,648 KB
testcase_13 AC 192 ms
75,696 KB
testcase_14 AC 194 ms
75,648 KB
testcase_15 AC 191 ms
75,264 KB
testcase_16 AC 193 ms
75,384 KB
testcase_17 AC 192 ms
75,264 KB
testcase_18 AC 192 ms
75,504 KB
testcase_19 AC 189 ms
75,776 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 206 ms
76,544 KB
testcase_22 AC 202 ms
76,416 KB
testcase_23 AC 202 ms
76,288 KB
testcase_24 AC 205 ms
76,160 KB
testcase_25 AC 198 ms
76,288 KB
testcase_26 AC 204 ms
76,416 KB
testcase_27 AC 204 ms
76,416 KB
testcase_28 AC 201 ms
76,160 KB
testcase_29 AC 202 ms
76,160 KB
testcase_30 AC 201 ms
76,160 KB
testcase_31 AC 200 ms
76,284 KB
testcase_32 AC 206 ms
76,288 KB
testcase_33 AC 203 ms
76,160 KB
testcase_34 AC 203 ms
76,216 KB
testcase_35 AC 202 ms
76,160 KB
testcase_36 AC 204 ms
76,288 KB
testcase_37 AC 203 ms
76,540 KB
testcase_38 AC 200 ms
76,544 KB
testcase_39 AC 201 ms
76,416 KB
testcase_40 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import pi
def zeta(x):
  if x==2:
    return pi*pi/6
  s=0
  for i in range(1,int((10**12)**(1/(x-1)))+2):
    s+=1/i**(x)
  return s
s=1
for i in range(2,int(input())):
  s-=zeta(i)-1
  #print(s,i)
print(int(s*1000000))
0