結果

問題 No.1009 面積の求め方
ユーザー shima_shima_ss
提出日時 2020-04-05 14:26:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-03 08:10:03
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#template
from collections import Counter
def inputlist(): return [int(k) for k in input().split()]
#template
a,b = inputlist()
S = (b-a)**3
S /=6
if S.is_integer():
    S = int(S)
print(S)
0