結果

問題 No.2790 Athena 3
ユーザー Ameesh SethiAmeesh Sethi
提出日時 2024-06-21 21:27:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-06-21 21:27:08
合計ジャッジ時間 1,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,548 KB
testcase_01 AC 34 ms
52,136 KB
testcase_02 AC 32 ms
52,868 KB
testcase_03 AC 33 ms
53,908 KB
testcase_04 AC 32 ms
54,152 KB
testcase_05 AC 32 ms
52,620 KB
testcase_06 AC 33 ms
52,324 KB
testcase_07 AC 33 ms
53,056 KB
testcase_08 AC 33 ms
53,060 KB
testcase_09 AC 32 ms
52,132 KB
testcase_10 AC 34 ms
52,960 KB
testcase_11 AC 32 ms
53,252 KB
testcase_12 AC 33 ms
52,924 KB
testcase_13 AC 32 ms
52,132 KB
testcase_14 AC 32 ms
52,408 KB
testcase_15 AC 32 ms
53,200 KB
testcase_16 AC 33 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def input(): return stdin.readline()[:-1]


def solve():
    x1, y1, x2, y2, x3, y3 = map(int, input().split())
    coooor = [[x1, y1], [x2, y2], [x3, y3]]
    
    ans = 0
    def dfs(index, coords):
        if index == 3:
            x1, y1 = coords[0]
            x2, y2 = coords[1]
            x3, y3 = coords[2]
            nonlocal ans
            ans = max(ans, abs((x1*(y2-y3) + x2*(y3-y1) + x3*(y1-y2))/2))
            return

        x, y = coooor[index]
        tuple1 = (x + 1, y)
        tuple2 = (x - 1, y)
        tuple3 = (x, y + 1)
        tuple4 = (x, y - 1)
        coords.append(tuple1)
        dfs(index + 1, coords)
        coords.pop()
        coords.append(tuple2)
        dfs(index + 1, coords)
        coords.pop()
        coords.append(tuple3)
        dfs(index + 1, coords)
        coords.pop()
        coords.append(tuple4)
        dfs(index + 1, coords)
        coords.pop()
    
    dfs(0, [])
    print(ans)

solve()
0