結果

問題 No.1009 面積の求め方
ユーザー luceluce
提出日時 2020-04-03 13:50:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 10,628 KB
実行使用メモリ 12,208 KB
最終ジャッジ日時 2023-09-11 03:51:52
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
12,116 KB
testcase_01 AC 40 ms
12,052 KB
testcase_02 AC 40 ms
12,052 KB
testcase_03 AC 40 ms
12,160 KB
testcase_04 AC 40 ms
12,152 KB
testcase_05 AC 40 ms
12,208 KB
testcase_06 AC 40 ms
12,072 KB
testcase_07 AC 40 ms
12,068 KB
testcase_08 AC 40 ms
12,128 KB
testcase_09 AC 40 ms
12,136 KB
testcase_10 AC 40 ms
12,052 KB
testcase_11 AC 41 ms
12,016 KB
testcase_12 AC 40 ms
12,056 KB
testcase_13 AC 41 ms
12,156 KB
testcase_14 AC 41 ms
12,092 KB
testcase_15 AC 40 ms
12,076 KB
testcase_16 AC 40 ms
12,016 KB
testcase_17 AC 40 ms
12,020 KB
testcase_18 AC 40 ms
12,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
d=(b-a)/100000
print(sum([d*abs(d*i*(a+d*i-b)) for i in range(100000)]))
0