結果

問題 No.2331 Maximum Quadrilateral
ユーザー rlangevinrlangevin
提出日時 2023-10-12 12:44:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 597 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 71,276 KB
最終ジャッジ日時 2024-09-14 11:44:30
合計ジャッジ時間 12,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
70,076 KB
testcase_01 AC 342 ms
67,912 KB
testcase_02 AC 373 ms
68,392 KB
testcase_03 AC 479 ms
68,500 KB
testcase_04 AC 504 ms
69,480 KB
testcase_05 AC 532 ms
68,920 KB
testcase_06 AC 468 ms
69,048 KB
testcase_07 AC 417 ms
68,476 KB
testcase_08 AC 316 ms
67,912 KB
testcase_09 AC 295 ms
68,624 KB
testcase_10 AC 273 ms
68,264 KB
testcase_11 AC 308 ms
67,732 KB
testcase_12 AC 287 ms
68,260 KB
testcase_13 AC 302 ms
67,220 KB
testcase_14 AC 543 ms
70,296 KB
testcase_15 AC 90 ms
66,388 KB
testcase_16 AC 219 ms
67,100 KB
testcase_17 AC 63 ms
65,012 KB
testcase_18 AC 101 ms
65,836 KB
testcase_19 AC 67 ms
65,792 KB
testcase_20 AC 592 ms
70,840 KB
testcase_21 AC 597 ms
71,276 KB
testcase_22 AC 556 ms
70,444 KB
testcase_23 AC 593 ms
71,264 KB
testcase_24 AC 591 ms
70,200 KB
testcase_25 AC 37 ms
53,048 KB
testcase_26 AC 38 ms
52,812 KB
testcase_27 AC 39 ms
52,516 KB
testcase_28 AC 38 ms
53,220 KB
testcase_29 AC 38 ms
52,380 KB
testcase_30 AC 39 ms
52,488 KB
testcase_31 AC 38 ms
53,072 KB
testcase_32 AC 39 ms
52,144 KB
testcase_33 AC 39 ms
52,772 KB
testcase_34 AC 38 ms
52,080 KB
testcase_35 AC 39 ms
52,620 KB
testcase_36 AC 39 ms
52,704 KB
testcase_37 AC 38 ms
52,892 KB
testcase_38 AC 40 ms
53,728 KB
testcase_39 AC 38 ms
53,864 KB
testcase_40 AC 39 ms
52,156 KB
testcase_41 AC 39 ms
53,264 KB
testcase_42 AC 38 ms
53,284 KB
testcase_43 AC 38 ms
53,068 KB
testcase_44 AC 38 ms
52,676 KB
testcase_45 AC 37 ms
53,052 KB
testcase_46 AC 38 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
X, Y = [0] * N, [0] * N
for i in range(N):
    X[i], Y[i] = map(int, input().split())

def f(x1, x2, y1, y2, x, y):
    return (x2 - x1) * (y - y1) - (y2 - y1) * (x - x1)

ans = 0
inf = 10 ** 18
for i in range(N):
    for j in range(i + 1, N):
        ans1, ans2 = -inf, -inf
        for k in range(N):
            v = f(X[i], X[j], Y[i], Y[j], X[k], Y[k])
            if v == 0:
                continue
            if v > 0:
                ans1 = max(ans1, v)
            else:
                ans2 = max(ans2, -v)
        ans = max(ans, ans1 + ans2)

print(ans)
0