結果

問題 No.454 逆2乗和
ユーザー rpy3cpprpy3cpp
提出日時 2017-04-13 02:23:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-30 03:15:40
合計ジャッジ時間 12,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
10,752 KB
testcase_01 AC 320 ms
10,752 KB
testcase_02 AC 329 ms
10,752 KB
testcase_03 AC 319 ms
10,880 KB
testcase_04 AC 317 ms
11,008 KB
testcase_05 AC 311 ms
10,880 KB
testcase_06 AC 335 ms
10,880 KB
testcase_07 AC 318 ms
10,752 KB
testcase_08 AC 311 ms
10,752 KB
testcase_09 AC 314 ms
11,008 KB
testcase_10 AC 332 ms
10,752 KB
testcase_11 AC 321 ms
10,752 KB
testcase_12 AC 322 ms
10,880 KB
testcase_13 AC 321 ms
10,752 KB
testcase_14 AC 319 ms
11,008 KB
testcase_15 AC 320 ms
10,880 KB
testcase_16 AC 318 ms
10,880 KB
testcase_17 AC 313 ms
10,752 KB
testcase_18 AC 320 ms
10,752 KB
testcase_19 AC 319 ms
10,752 KB
testcase_20 AC 319 ms
10,752 KB
testcase_21 AC 330 ms
10,752 KB
testcase_22 AC 330 ms
10,752 KB
testcase_23 AC 310 ms
10,880 KB
testcase_24 AC 313 ms
10,752 KB
testcase_25 AC 312 ms
10,752 KB
testcase_26 AC 314 ms
10,752 KB
testcase_27 AC 316 ms
10,752 KB
testcase_28 AC 312 ms
11,008 KB
testcase_29 AC 310 ms
10,752 KB
testcase_30 AC 314 ms
10,752 KB
testcase_31 AC 317 ms
10,752 KB
testcase_32 AC 315 ms
11,008 KB
testcase_33 AC 321 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

x = float(input())

def solve(x):
    m = int(x)
    r = x - m
    dif1 = 0
    for n in range(1, m + 1):
        dif1 += 1 / (n**2)
    dif2 = 0
    for n in range(m + 1, 10**6):
        dif2 += (2*n + r)/(n * (n + r))**2
    return (math.pi)**2 / 6 - dif1 - r * dif2

print(solve(x))
0