結果

問題 No.1009 面積の求め方
ユーザー neetia_neetianeetia_neetia
提出日時 2020-03-28 19:48:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 64,596 KB
最終ジャッジ日時 2025-01-02 12:04:20
合計ジャッジ時間 2,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
63,592 KB
testcase_01 AC 40 ms
52,812 KB
testcase_02 AC 43 ms
63,664 KB
testcase_03 AC 46 ms
64,492 KB
testcase_04 AC 40 ms
53,004 KB
testcase_05 AC 39 ms
53,068 KB
testcase_06 AC 46 ms
63,796 KB
testcase_07 AC 45 ms
63,656 KB
testcase_08 AC 45 ms
62,808 KB
testcase_09 AC 46 ms
62,928 KB
testcase_10 AC 46 ms
63,444 KB
testcase_11 AC 45 ms
63,728 KB
testcase_12 AC 46 ms
63,048 KB
testcase_13 AC 45 ms
64,596 KB
testcase_14 AC 47 ms
63,012 KB
testcase_15 AC 46 ms
63,528 KB
testcase_16 AC 47 ms
64,480 KB
testcase_17 AC 46 ms
63,592 KB
testcase_18 AC 45 ms
63,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
if b-a<10**(-5):
    print(0)
    exit()
s=a+0
w=b-a
ans=0
while a<=s<=b:
    s+=w/(10**5)
    y=(s-a)*(s-b)*(w/(10**5))
    ans+=abs(y)

print(ans)
0