結果

問題 No.1009 面積の求め方
ユーザー atcoderbeginneratcoderbeginner
提出日時 2020-03-30 23:44:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,972 KB
最終ジャッジ日時 2024-06-23 07:09:55
合計ジャッジ時間 13,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
43,708 KB
testcase_01 AC 545 ms
43,692 KB
testcase_02 AC 537 ms
43,844 KB
testcase_03 AC 546 ms
43,704 KB
testcase_04 AC 530 ms
43,852 KB
testcase_05 AC 523 ms
43,720 KB
testcase_06 AC 531 ms
43,972 KB
testcase_07 AC 541 ms
43,700 KB
testcase_08 AC 539 ms
43,720 KB
testcase_09 AC 558 ms
43,656 KB
testcase_10 AC 533 ms
43,568 KB
testcase_11 AC 525 ms
43,696 KB
testcase_12 AC 533 ms
43,964 KB
testcase_13 AC 540 ms
43,568 KB
testcase_14 AC 544 ms
43,580 KB
testcase_15 AC 535 ms
43,588 KB
testcase_16 AC 542 ms
43,444 KB
testcase_17 AC 536 ms
43,700 KB
testcase_18 AC 534 ms
43,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import module
import sys
import math
import numpy as np

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

s = ((b-a)**3) / 6

if s == 0:
    print(0)
else:
    print(s)
0