結果

問題 No.2331 Maximum Quadrilateral
ユーザー rlangevinrlangevin
提出日時 2023-10-12 12:41:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-14 11:41:09
合計ジャッジ時間 12,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
68,608 KB
testcase_01 AC 350 ms
67,584 KB
testcase_02 AC 391 ms
67,712 KB
testcase_03 AC 480 ms
67,840 KB
testcase_04 AC 512 ms
68,736 KB
testcase_05 AC 541 ms
68,864 KB
testcase_06 AC 477 ms
68,096 KB
testcase_07 AC 428 ms
68,480 KB
testcase_08 AC 325 ms
67,456 KB
testcase_09 AC 304 ms
67,072 KB
testcase_10 AC 283 ms
67,328 KB
testcase_11 AC 320 ms
67,584 KB
testcase_12 AC 299 ms
67,072 KB
testcase_13 AC 313 ms
67,200 KB
testcase_14 AC 555 ms
68,480 KB
testcase_15 AC 100 ms
64,640 KB
testcase_16 AC 229 ms
66,944 KB
testcase_17 AC 69 ms
64,000 KB
testcase_18 AC 109 ms
64,768 KB
testcase_19 AC 74 ms
64,000 KB
testcase_20 AC 606 ms
68,736 KB
testcase_21 AC 605 ms
69,120 KB
testcase_22 AC 562 ms
68,992 KB
testcase_23 AC 602 ms
69,504 KB
testcase_24 AC 600 ms
69,248 KB
testcase_25 AC 42 ms
51,840 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 42 ms
51,712 KB
testcase_28 AC 42 ms
51,712 KB
testcase_29 AC 42 ms
51,968 KB
testcase_30 WA -
testcase_31 AC 42 ms
51,840 KB
testcase_32 AC 43 ms
52,224 KB
testcase_33 AC 42 ms
52,352 KB
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 41 ms
52,224 KB
testcase_37 AC 41 ms
51,840 KB
testcase_38 AC 41 ms
52,352 KB
testcase_39 AC 41 ms
51,584 KB
testcase_40 AC 41 ms
51,968 KB
testcase_41 AC 41 ms
52,096 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 41 ms
51,840 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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
for i in range(N):
    for j in range(i + 1, N):
        ans1, ans2 = 0, 0
        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