結果

問題 No.2012 Largest Triangle
ユーザー prd_xxxprd_xxx
提出日時 2022-07-15 23:13:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,684 KB
最終ジャッジ日時 2024-06-27 20:34:14
合計ジャッジ時間 30,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 33 ms
10,624 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 32 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 1,243 ms
50,484 KB
testcase_17 AC 1,274 ms
50,164 KB
testcase_18 AC 1,234 ms
50,552 KB
testcase_19 AC 1,261 ms
50,168 KB
testcase_20 AC 1,260 ms
50,456 KB
testcase_21 AC 1,276 ms
49,896 KB
testcase_22 AC 1,273 ms
49,848 KB
testcase_23 AC 1,242 ms
49,976 KB
testcase_24 AC 1,265 ms
50,040 KB
testcase_25 AC 1,267 ms
50,124 KB
testcase_26 AC 1,254 ms
50,684 KB
testcase_27 AC 1,285 ms
50,176 KB
testcase_28 AC 1,225 ms
49,984 KB
testcase_29 AC 1,285 ms
49,788 KB
testcase_30 AC 1,274 ms
50,424 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 398 ms
10,752 KB
testcase_37 AC 388 ms
10,880 KB
testcase_38 AC 377 ms
10,624 KB
testcase_39 AC 378 ms
10,752 KB
testcase_40 AC 372 ms
10,752 KB
testcase_41 AC 835 ms
21,056 KB
権限があれば一括ダウンロードができます

ソースコード

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(1000):
    if len(XY) < 2: break
    x1,y1 = XY.pop()
    for x2,y2 in XY[-1000:]:
        ans = max(ans, abs(x1*y2 - x2*y1))
print(ans)
0