結果

問題 No.2790 Athena 3
ユーザー rlangevinrlangevin
提出日時 2024-06-21 21:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-06-21 21:31:22
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,928 KB
testcase_01 AC 33 ms
52,660 KB
testcase_02 AC 32 ms
53,160 KB
testcase_03 AC 34 ms
52,944 KB
testcase_04 AC 34 ms
52,552 KB
testcase_05 AC 34 ms
54,052 KB
testcase_06 AC 34 ms
52,008 KB
testcase_07 AC 33 ms
52,956 KB
testcase_08 AC 33 ms
52,196 KB
testcase_09 AC 33 ms
52,068 KB
testcase_10 AC 34 ms
53,352 KB
testcase_11 AC 36 ms
52,672 KB
testcase_12 AC 36 ms
52,744 KB
testcase_13 AC 34 ms
53,372 KB
testcase_14 AC 34 ms
53,280 KB
testcase_15 AC 33 ms
53,096 KB
testcase_16 AC 35 ms
52,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x1, y1, x2, y2, x3, y3):
    X1 = x2 - x1
    Y1 = y2 - y1
    X2 = x3 - x1
    Y2 = y3 - y1
    return abs(X2 * Y1 - Y2 * X1)/2

x1, y1, x2, y2, x3, y3 = map(int, input().split())
ans = 0
for a in [1, -1]:
    for b in [1, -1]:
        for c in [1, -1]:
            ans = max(ans, f(x1+a, y1, x2+b, y2, x3+c, y3))
            ans = max(ans, f(x1, y1+a, x2+b, y2, x3+c, y3))
            ans = max(ans, f(x1+a, y1, x2, y2+b, x3+c, y3))
            ans = max(ans, f(x1+a, y1, x2+b, y2, x3, y3+c))
            ans = max(ans, f(x1, y1+a, x2, y2+b, x3+c, y3))
            ans = max(ans, f(x1+a, y1, x2, y2+b, x3, y3+c))
            ans = max(ans, f(x1, y1+a, x2+b, y2, x3, y3+c))
            ans = max(ans, f(x1, y1+a, x2, y2+b, x3, y3+c))
            
print(ans)
0