結果

問題 No.2012 Largest Triangle
ユーザー prd_xxxprd_xxx
提出日時 2022-07-15 23:07:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-06-27 20:23:12
合計ジャッジ時間 5,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,216 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 48 ms
58,880 KB
testcase_12 AC 43 ms
58,880 KB
testcase_13 AC 44 ms
58,752 KB
testcase_14 AC 44 ms
59,648 KB
testcase_15 AC 44 ms
59,008 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
XY = [tuple(map(int,input().split())) for i in range(N)]
XY.sort(key=lambda x:x[0]**2 + x[1]**2)

ans = 0
for i in range(300):
    if len(XY) < 2: break
    x1,y1 = XY.pop()
    for x2,y2 in XY:
        ans = max(ans, abs(x1*y2 - x2*y1))
print(ans)
0