結果

問題 No.2012 Largest Triangle
ユーザー prd_xxxprd_xxx
提出日時 2022-07-15 23:14:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 96,036 KB
最終ジャッジ日時 2024-06-27 20:36:04
合計ジャッジ時間 19,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,812 KB
testcase_01 AC 36 ms
53,152 KB
testcase_02 AC 36 ms
53,068 KB
testcase_03 AC 34 ms
52,524 KB
testcase_04 AC 34 ms
52,748 KB
testcase_05 AC 35 ms
52,344 KB
testcase_06 AC 36 ms
52,144 KB
testcase_07 AC 36 ms
52,572 KB
testcase_08 AC 36 ms
53,284 KB
testcase_09 AC 36 ms
53,040 KB
testcase_10 AC 36 ms
53,024 KB
testcase_11 AC 41 ms
61,168 KB
testcase_12 AC 43 ms
60,580 KB
testcase_13 AC 42 ms
60,636 KB
testcase_14 AC 42 ms
59,840 KB
testcase_15 AC 42 ms
59,676 KB
testcase_16 AC 790 ms
95,716 KB
testcase_17 AC 791 ms
95,056 KB
testcase_18 AC 806 ms
95,272 KB
testcase_19 AC 790 ms
95,068 KB
testcase_20 AC 800 ms
95,584 KB
testcase_21 AC 796 ms
95,108 KB
testcase_22 AC 795 ms
95,080 KB
testcase_23 AC 806 ms
94,940 KB
testcase_24 AC 796 ms
95,112 KB
testcase_25 AC 796 ms
95,464 KB
testcase_26 AC 796 ms
95,488 KB
testcase_27 AC 787 ms
95,020 KB
testcase_28 AC 776 ms
95,108 KB
testcase_29 AC 774 ms
94,776 KB
testcase_30 AC 798 ms
95,184 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 60 ms
67,608 KB
testcase_37 AC 59 ms
67,136 KB
testcase_38 AC 59 ms
67,916 KB
testcase_39 AC 59 ms
66,968 KB
testcase_40 AC 60 ms
69,108 KB
testcase_41 AC 216 ms
80,972 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(3000):
    if len(XY) < 2: break
    x1,y1 = XY.pop()
    for x2,y2 in XY[-3000:]:
        ans = max(ans, abs(x1*y2 - x2*y1))
print(ans)
0