結果

問題 No.2790 Athena 3
ユーザー dp_ijkdp_ijk
提出日時 2024-06-21 21:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-06-21 21:30:03
合計ジャッジ時間 1,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,364 KB
testcase_01 AC 39 ms
52,404 KB
testcase_02 AC 38 ms
53,196 KB
testcase_03 AC 37 ms
52,676 KB
testcase_04 AC 38 ms
53,072 KB
testcase_05 AC 36 ms
52,312 KB
testcase_06 AC 35 ms
53,268 KB
testcase_07 AC 36 ms
52,900 KB
testcase_08 AC 36 ms
53,408 KB
testcase_09 AC 35 ms
53,260 KB
testcase_10 AC 36 ms
53,500 KB
testcase_11 AC 36 ms
52,988 KB
testcase_12 AC 35 ms
52,316 KB
testcase_13 AC 33 ms
52,504 KB
testcase_14 AC 33 ms
53,284 KB
testcase_15 AC 31 ms
52,196 KB
testcase_16 AC 33 ms
53,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def adj(P):
   x, y = P
   res = []
   for dx in -1, 0, 1:
      for dy in -1, 0, 1:
         if dx*dy == 0 and dx+dy != 0:
            res.append((x+dx, y+dy))
   return res


def area(P, Q, R):
   x, y = P
   a, b = Q
   c, d = R
   a, b = a-x, b-y
   c, d = c-x, d-y
   return abs(a*d - b*c)


cands = []
for P in adj(P1):
   for Q in adj(P2):
      for R in adj(P3):
         cands.append(area(P, Q, R))

ans = max(cands) / 2
print(ans)
0