結果

問題 No.1009 面積の求め方
ユーザー splash9494splash9494
提出日時 2020-05-05 19:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 61,152 KB
最終ジャッジ日時 2024-06-27 01:54:54
合計ジャッジ時間 1,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,832 KB
testcase_01 AC 43 ms
59,468 KB
testcase_02 AC 43 ms
60,112 KB
testcase_03 AC 43 ms
59,868 KB
testcase_04 AC 43 ms
59,896 KB
testcase_05 AC 41 ms
59,656 KB
testcase_06 AC 43 ms
61,152 KB
testcase_07 AC 42 ms
60,340 KB
testcase_08 AC 43 ms
60,248 KB
testcase_09 AC 42 ms
59,156 KB
testcase_10 AC 43 ms
59,504 KB
testcase_11 AC 42 ms
59,620 KB
testcase_12 AC 43 ms
60,408 KB
testcase_13 AC 41 ms
59,360 KB
testcase_14 AC 43 ms
59,180 KB
testcase_15 AC 42 ms
60,648 KB
testcase_16 AC 42 ms
59,768 KB
testcase_17 AC 42 ms
60,024 KB
testcase_18 AC 42 ms
60,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

a, b = map(int, input().split())

N = 10 ** 4
d = (b - a) / float(N)
f = lambda x: (x - a)*(x - b)
S = 0

for i in [a + (x * d) for x in range(0, N + 1)]:
    s = abs(d * f(i))
    S += s
    
print(round(S, 7))
0