結果

問題 No.1009 面積の求め方
ユーザー yatsurugiyatsurugi
提出日時 2020-09-24 11:29:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 147 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 133,972 KB
最終ジャッジ日時 2024-06-28 04:51:42
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,415 ms
68,928 KB
testcase_02 AC 1,605 ms
68,780 KB
testcase_03 AC 1,419 ms
69,288 KB
testcase_04 AC 1,443 ms
68,908 KB
testcase_05 AC 1,417 ms
69,172 KB
testcase_06 AC 1,424 ms
69,044 KB
testcase_07 AC 1,427 ms
69,160 KB
testcase_08 AC 1,446 ms
69,156 KB
testcase_09 AC 1,443 ms
69,032 KB
testcase_10 AC 1,444 ms
68,520 KB
testcase_11 AC 1,458 ms
69,412 KB
testcase_12 AC 1,447 ms
68,908 KB
testcase_13 AC 1,432 ms
69,168 KB
testcase_14 AC 1,419 ms
69,412 KB
testcase_15 AC 1,429 ms
68,648 KB
testcase_16 AC 1,417 ms
69,292 KB
testcase_17 AC 1,434 ms
69,176 KB
testcase_18 AC 1,443 ms
133,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy import integrate

a, b = map(int, input().split())

y = lambda x: (x - a) * (x - b)
ans, err = integrate.quad(y, a, b)

print(abs(ans))
0