結果

問題 No.1009 面積の求め方
ユーザー syunsukesyunsuke
提出日時 2020-11-09 22:00:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-07-22 16:21:47
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
75,040 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 54 ms
73,344 KB
testcase_03 AC 68 ms
75,292 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 61 ms
75,392 KB
testcase_07 AC 60 ms
75,232 KB
testcase_08 AC 56 ms
75,264 KB
testcase_09 AC 48 ms
64,256 KB
testcase_10 AC 49 ms
67,328 KB
testcase_11 AC 50 ms
70,528 KB
testcase_12 AC 58 ms
75,336 KB
testcase_13 AC 60 ms
75,008 KB
testcase_14 AC 63 ms
75,292 KB
testcase_15 AC 69 ms
75,392 KB
testcase_16 AC 65 ms
75,264 KB
testcase_17 AC 62 ms
75,136 KB
testcase_18 AC 66 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())
ans=0
i=A+0
while i<=B:
    ans+=(i**2-(A+B)*i+A*B)*0.00001
    i+=0.00001
print(abs(ans))
0