結果

問題 No.1009 面積の求め方
ユーザー はむ吉🐹はむ吉🐹
提出日時 2020-04-01 15:42:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,993 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 138,016 KB
最終ジャッジ日時 2024-06-26 22:13:51
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,993 ms
70,092 KB
testcase_01 AC 1,421 ms
70,088 KB
testcase_02 AC 1,401 ms
70,344 KB
testcase_03 AC 1,394 ms
69,832 KB
testcase_04 AC 1,424 ms
70,112 KB
testcase_05 AC 1,404 ms
70,340 KB
testcase_06 AC 1,398 ms
70,208 KB
testcase_07 AC 1,410 ms
69,824 KB
testcase_08 AC 1,401 ms
69,836 KB
testcase_09 AC 1,411 ms
69,836 KB
testcase_10 AC 1,402 ms
70,084 KB
testcase_11 AC 1,419 ms
70,340 KB
testcase_12 AC 1,418 ms
69,832 KB
testcase_13 AC 1,402 ms
69,836 KB
testcase_14 AC 1,395 ms
70,432 KB
testcase_15 AC 1,392 ms
70,080 KB
testcase_16 AC 1,407 ms
70,204 KB
testcase_17 AC 1,420 ms
70,348 KB
testcase_18 AC 1,441 ms
138,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import scipy.integrate


def compute_area(a, b):
    res = scipy.integrate.fixed_quad(lambda x: -(x - a) * (x - b), a, b)
    return res[0]


def main():
    a, b = (int(z) for z in input().split())
    area = compute_area(a, b)
    print("{:.12f}".format(area))


if __name__ == "__main__":
    main()
0