結果

問題 No.1009 面積の求め方
ユーザー ssmkzkssmkzk
提出日時 2020-10-30 16:26:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,440 KB
最終ジャッジ日時 2024-07-21 22:53:36
合計ジャッジ時間 12,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
44,048 KB
testcase_01 AC 493 ms
43,968 KB
testcase_02 AC 555 ms
44,176 KB
testcase_03 AC 565 ms
43,928 KB
testcase_04 AC 490 ms
43,924 KB
testcase_05 AC 491 ms
44,052 KB
testcase_06 AC 568 ms
43,912 KB
testcase_07 AC 571 ms
43,920 KB
testcase_08 AC 565 ms
43,924 KB
testcase_09 AC 568 ms
44,056 KB
testcase_10 AC 569 ms
44,440 KB
testcase_11 AC 575 ms
44,416 KB
testcase_12 AC 581 ms
44,432 KB
testcase_13 AC 568 ms
44,060 KB
testcase_14 AC 553 ms
44,400 KB
testcase_15 AC 562 ms
43,908 KB
testcase_16 AC 582 ms
43,924 KB
testcase_17 AC 561 ms
43,916 KB
testcase_18 AC 561 ms
44,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a, b = map(int, input().split())
dis = (b - a)/100000
# count = 0
ans = 0
if dis == 0:
    print(0)
else:
    for i in np.arange(a, b, dis):
        # print(((i**2) - ((a + b)*i) + (a*b) ))
        ans += abs((i**2) - ((a + b)*i) + (a*b) )
        # count += 1
        # if count > 95000:
        #     print(i)
    print(ans*dis)
0