結果

問題 No.1009 面積の求め方
ユーザー komkompikomkompi
提出日時 2020-03-29 01:28:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 279 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-10 18:00:04
合計ジャッジ時間 21,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 749 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 613 ms
11,008 KB
testcase_03 TLE -
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 24 ms
10,880 KB
testcase_06 AC 1,220 ms
10,880 KB
testcase_07 AC 1,059 ms
10,752 KB
testcase_08 AC 871 ms
10,752 KB
testcase_09 AC 259 ms
10,752 KB
testcase_10 AC 383 ms
10,880 KB
testcase_11 AC 473 ms
10,752 KB
testcase_12 AC 1,112 ms
10,752 KB
testcase_13 AC 1,335 ms
10,752 KB
testcase_14 AC 1,570 ms
10,752 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,427 ms
10,752 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