結果

問題 No.2790 Athena 3
ユーザー tassei903tassei903
提出日時 2024-06-21 22:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-21 22:01:57
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,592 KB
testcase_01 AC 38 ms
53,992 KB
testcase_02 AC 38 ms
52,600 KB
testcase_03 AC 37 ms
52,908 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 38 ms
53,684 KB
testcase_06 AC 38 ms
52,604 KB
testcase_07 AC 38 ms
53,936 KB
testcase_08 AC 39 ms
53,020 KB
testcase_09 AC 37 ms
52,620 KB
testcase_10 AC 38 ms
52,316 KB
testcase_11 AC 38 ms
53,560 KB
testcase_12 AC 37 ms
54,192 KB
testcase_13 AC 37 ms
52,616 KB
testcase_14 AC 37 ms
52,800 KB
testcase_15 AC 38 ms
52,420 KB
testcase_16 AC 38 ms
52,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

x1, y1, x2, y2, x3, y3 = na()
ans = 0

for a1, a2 in [(x1-1, y1), (x1, y1-1), (x1+1, y1), (x1, y1+1)]:
    for b1, b2 in [(x2-1, y2), (x2, y2-1), (x2+1, y2), (x2, y2+1)]:
        for c1, c2 in [(x3-1, y3), (x3, y3-1), (x3+1, y3), (x3, y3+1)]:
            ans = max(ans, abs((a1-b1)*(c2-b2)-(a2-b2)*(c1-b1)))
print(ans/2)
0