結果

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

ソースコード

diff #

import sys
input = sys.stdin.readline

def linput():
	return list(map(float,input().split()))

def gcd(a: int, b: int):
	while b: a, b = b, a%b
	return a

def lcm(a: int, b: int):
	return a * b // gcd(a, b)

def main():
	A,B = linput()
	E = 10**(-6)
	
	res = 0.0
	T = (A+B)/2
	res -= (1/3) * B**3 + (A-T) * B**2
	res += (1/3) * A**3 + (B-T) * A**2
	
	print(res)

if __name__ == "__main__":
	main()
0