結果

問題 No.2790 Athena 3
ユーザー moon17moon17
提出日時 2024-06-22 14:21:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-22 14:21:02
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,600 KB
testcase_01 AC 34 ms
52,948 KB
testcase_02 AC 34 ms
53,824 KB
testcase_03 AC 34 ms
52,612 KB
testcase_04 AC 33 ms
52,684 KB
testcase_05 AC 33 ms
52,824 KB
testcase_06 AC 34 ms
52,772 KB
testcase_07 AC 34 ms
52,532 KB
testcase_08 AC 34 ms
53,172 KB
testcase_09 AC 34 ms
52,360 KB
testcase_10 AC 35 ms
53,744 KB
testcase_11 AC 33 ms
52,160 KB
testcase_12 AC 33 ms
53,240 KB
testcase_13 AC 34 ms
54,288 KB
testcase_14 AC 34 ms
52,196 KB
testcase_15 AC 34 ms
52,212 KB
testcase_16 AC 34 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x1,y1,x2,y2,x3,y3=map(int,input().split())
ans=0
d=(1,0),(-1,0),(0,1),(0,-1)
for i in range(4):
	xi,yi=x1+d[i][0],y1+d[i][1]
	for j in range(4):
		xj,yj=x2+d[j][0],y2+d[j][1]
		for k in range(4):
			xk,yk=x3+d[k][0],y3+d[k][1]
			s=abs((xj-xi)*(yk-yi)-(xk-xi)*(yj-yi))
			ans=max(ans,s)
print(ans/2)
0