結果

問題 No.2971 無理積分
ユーザー pitPpitP
提出日時 2024-11-29 21:39:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 198 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-11-29 21:39:21
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
61,824 KB
testcase_01 AC 62 ms
61,952 KB
testcase_02 AC 64 ms
62,080 KB
testcase_03 AC 71 ms
61,952 KB
testcase_04 AC 62 ms
61,824 KB
testcase_05 AC 62 ms
61,312 KB
testcase_06 AC 58 ms
62,080 KB
testcase_07 AC 57 ms
61,440 KB
testcase_08 AC 58 ms
61,696 KB
testcase_09 AC 58 ms
61,440 KB
testcase_10 AC 58 ms
61,824 KB
testcase_11 AC 59 ms
61,952 KB
testcase_12 AC 58 ms
61,568 KB
testcase_13 AC 62 ms
61,952 KB
testcase_14 AC 58 ms
61,440 KB
testcase_15 AC 59 ms
61,696 KB
testcase_16 AC 58 ms
61,312 KB
testcase_17 AC 57 ms
62,208 KB
testcase_18 AC 58 ms
61,568 KB
testcase_19 AC 57 ms
61,952 KB
testcase_20 AC 57 ms
61,952 KB
testcase_21 AC 63 ms
61,696 KB
testcase_22 AC 57 ms
61,440 KB
testcase_23 AC 59 ms
62,080 KB
testcase_24 AC 60 ms
61,952 KB
testcase_25 AC 60 ms
61,952 KB
testcase_26 AC 58 ms
61,696 KB
testcase_27 AC 61 ms
62,080 KB
testcase_28 AC 58 ms
61,568 KB
testcase_29 AC 58 ms
61,568 KB
testcase_30 AC 58 ms
61,696 KB
testcase_31 AC 58 ms
61,696 KB
testcase_32 AC 59 ms
61,824 KB
testcase_33 AC 59 ms
61,696 KB
testcase_34 AC 57 ms
62,080 KB
testcase_35 AC 58 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

def f(x):
    return (x * x * x + n * n * n) ** 0.5

N = 10 ** 5

a = 0
b = 1
h = (b-a)/N

S = (h/3) * sum((f(h*i) + 4*f(h*(i+1)) + f(h*(i+2))) for i in range(0,N-1, 2))

print(S)
0