結果

問題 No.2971 無理積分
ユーザー vwxyzvwxyz
提出日時 2024-11-29 21:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 1,000 ms
コード長 174 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-29 21:24:38
合計ジャッジ時間 14,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
76,032 KB
testcase_01 AC 320 ms
75,904 KB
testcase_02 AC 321 ms
76,032 KB
testcase_03 AC 320 ms
75,904 KB
testcase_04 AC 330 ms
75,392 KB
testcase_05 AC 322 ms
75,648 KB
testcase_06 AC 320 ms
76,032 KB
testcase_07 AC 324 ms
76,032 KB
testcase_08 AC 320 ms
75,776 KB
testcase_09 AC 322 ms
76,032 KB
testcase_10 AC 377 ms
76,032 KB
testcase_11 AC 320 ms
75,648 KB
testcase_12 AC 322 ms
75,868 KB
testcase_13 AC 326 ms
75,648 KB
testcase_14 AC 326 ms
75,520 KB
testcase_15 AC 339 ms
76,032 KB
testcase_16 AC 357 ms
75,776 KB
testcase_17 AC 324 ms
76,032 KB
testcase_18 AC 326 ms
75,776 KB
testcase_19 AC 358 ms
75,904 KB
testcase_20 AC 357 ms
76,032 KB
testcase_21 AC 322 ms
75,648 KB
testcase_22 AC 381 ms
75,904 KB
testcase_23 AC 322 ms
76,032 KB
testcase_24 AC 348 ms
76,004 KB
testcase_25 AC 319 ms
76,032 KB
testcase_26 AC 351 ms
75,944 KB
testcase_27 AC 349 ms
75,904 KB
testcase_28 AC 321 ms
75,776 KB
testcase_29 AC 321 ms
75,904 KB
testcase_30 AC 319 ms
75,904 KB
testcase_31 AC 319 ms
76,032 KB
testcase_32 AC 351 ms
75,776 KB
testcase_33 AC 324 ms
76,004 KB
testcase_34 AC 325 ms
75,776 KB
testcase_35 AC 350 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N=int(input())
ans=0
D=10**6
def f(x):
    return (x**3+N**3)**.5
for i in range(D):
    a=i/D
    b=(i+1)/D
    ans+=(f(a)+4*f((a+b)/2)+f(b))*(b-a)/6
print(ans)
0