結果

問題 No.1009 面積の求め方
ユーザー komkompikomkompi
提出日時 2020-03-29 01:28:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 279 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2025-01-02 12:38:15
合計ジャッジ時間 24,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 846 ms
10,240 KB
testcase_01 AC 29 ms
10,112 KB
testcase_02 AC 677 ms
10,496 KB
testcase_03 TLE -
testcase_04 AC 29 ms
10,240 KB
testcase_05 AC 28 ms
10,240 KB
testcase_06 AC 1,413 ms
10,112 KB
testcase_07 AC 1,082 ms
10,112 KB
testcase_08 AC 959 ms
10,240 KB
testcase_09 AC 283 ms
9,984 KB
testcase_10 AC 428 ms
10,112 KB
testcase_11 AC 550 ms
10,112 KB
testcase_12 AC 1,281 ms
10,112 KB
testcase_13 AC 1,483 ms
9,984 KB
testcase_14 AC 1,907 ms
10,240 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,676 ms
10,240 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
def func(num):
    return num**2-a*num-b*num+a*b

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

dt=10**-5

al=(b-a)*10**5

ans=0
for i in range(al-1):
    high=(i+1)*10**-5+a
    low=i*10**-5+a
    #print(high)
    ans+=-(func(high)+func(low))/2*dt

print(ans)
0