結果

問題 No.2790 Athena 3
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-21 22:12:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-06-21 22:12:03
合計ジャッジ時間 1,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,232 KB
testcase_01 AC 34 ms
52,744 KB
testcase_02 AC 34 ms
53,336 KB
testcase_03 AC 34 ms
52,836 KB
testcase_04 AC 33 ms
53,300 KB
testcase_05 AC 32 ms
52,188 KB
testcase_06 AC 33 ms
52,568 KB
testcase_07 AC 33 ms
51,944 KB
testcase_08 AC 32 ms
52,664 KB
testcase_09 AC 32 ms
52,752 KB
testcase_10 AC 31 ms
52,620 KB
testcase_11 AC 33 ms
52,384 KB
testcase_12 AC 37 ms
52,604 KB
testcase_13 AC 32 ms
53,320 KB
testcase_14 AC 32 ms
53,744 KB
testcase_15 AC 32 ms
53,076 KB
testcase_16 AC 33 ms
53,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x1,y1,x2,y2,x3,y3=map(int,input().split())

def X(a,b,c):
  ax,ay=a
  bx,by=b
  cx,cy=c
  return (ax-cx)*(by-cy)-(ay-cy)*(bx-cx)

s=0

for dx1,dy1 in [(1,0),(-1,0),(0,1),(0,-1)]:
  for dx2,dy2 in [(1,0),(-1,0),(0,1),(0,-1)]:
    for dx3,dy3 in [(1,0),(-1,0),(0,1),(0,-1)]:
      s=max(s,abs(X((x1+dx1,y1+dy1),(x2+dx2,y2+dy2),(x3+dx3,y3+dy3))))

print(s/2)
0