結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
75,364 KB
testcase_01 AC 36 ms
52,804 KB
testcase_02 AC 55 ms
75,304 KB
testcase_03 AC 53 ms
75,340 KB
testcase_04 AC 35 ms
52,356 KB
testcase_05 AC 34 ms
52,904 KB
testcase_06 AC 52 ms
75,508 KB
testcase_07 AC 56 ms
75,584 KB
testcase_08 AC 50 ms
75,520 KB
testcase_09 AC 56 ms
75,312 KB
testcase_10 AC 56 ms
75,688 KB
testcase_11 AC 53 ms
75,896 KB
testcase_12 AC 52 ms
75,532 KB
testcase_13 AC 53 ms
75,888 KB
testcase_14 AC 52 ms
75,356 KB
testcase_15 AC 51 ms
75,288 KB
testcase_16 AC 54 ms
75,368 KB
testcase_17 AC 57 ms
75,292 KB
testcase_18 AC 53 ms
75,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(ans)
0