結果

問題 No.1009 面積の求め方
ユーザー H20H20
提出日時 2020-11-27 10:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 75,448 KB
最終ジャッジ日時 2024-07-23 21:26:18
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
75,436 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 49 ms
73,740 KB
testcase_03 AC 64 ms
75,156 KB
testcase_04 AC 39 ms
51,868 KB
testcase_05 AC 39 ms
53,128 KB
testcase_06 AC 57 ms
75,448 KB
testcase_07 AC 55 ms
75,024 KB
testcase_08 AC 54 ms
74,828 KB
testcase_09 AC 45 ms
65,112 KB
testcase_10 AC 48 ms
67,428 KB
testcase_11 AC 50 ms
70,708 KB
testcase_12 AC 56 ms
74,884 KB
testcase_13 AC 57 ms
74,844 KB
testcase_14 AC 58 ms
74,988 KB
testcase_15 AC 61 ms
74,968 KB
testcase_16 AC 62 ms
74,848 KB
testcase_17 AC 58 ms
74,976 KB
testcase_18 AC 61 ms
74,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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