結果

問題 No.1235 ζ関数
ユーザー kozykozy
提出日時 2020-09-21 12:52:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,535 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-26 03:14:02
合計ジャッジ時間 12,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 824 ms
10,880 KB
testcase_02 AC 229 ms
11,008 KB
testcase_03 AC 996 ms
10,880 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 269 ms
10,880 KB
testcase_06 AC 87 ms
10,752 KB
testcase_07 AC 1,535 ms
11,136 KB
testcase_08 AC 356 ms
10,880 KB
testcase_09 AC 837 ms
11,136 KB
testcase_10 AC 874 ms
10,880 KB
testcase_11 AC 980 ms
10,880 KB
testcase_12 AC 363 ms
10,752 KB
testcase_13 AC 1,038 ms
10,880 KB
testcase_14 AC 212 ms
10,752 KB
testcase_15 AC 986 ms
11,008 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 447 ms
10,880 KB
testcase_18 AC 100 ms
10,752 KB
testcase_19 AC 1,200 ms
10,880 KB
testcase_20 AC 97 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def zeta2(a):
  q=0
  for i in range(1,100):
    q+=1/pow(i,a)
  return q
N=int(input())
print(zeta2(N))
0