結果

問題 No.2012 Largest Triangle
ユーザー prd_xxxprd_xxx
提出日時 2022-07-15 23:09:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-06-27 20:26:56
合計ジャッジ時間 24,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 35 ms
51,876 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 45 ms
58,624 KB
testcase_12 AC 41 ms
59,264 KB
testcase_13 AC 42 ms
58,880 KB
testcase_14 AC 42 ms
59,136 KB
testcase_15 AC 42 ms
59,520 KB
testcase_16 AC 1,080 ms
94,600 KB
testcase_17 AC 1,159 ms
94,460 KB
testcase_18 AC 1,137 ms
94,592 KB
testcase_19 AC 1,153 ms
94,496 KB
testcase_20 AC 1,130 ms
94,976 KB
testcase_21 AC 1,169 ms
94,280 KB
testcase_22 AC 1,106 ms
95,080 KB
testcase_23 AC 1,019 ms
94,504 KB
testcase_24 AC 1,019 ms
94,336 KB
testcase_25 AC 1,074 ms
94,632 KB
testcase_26 AC 992 ms
94,852 KB
testcase_27 AC 1,031 ms
94,496 KB
testcase_28 AC 1,027 ms
94,296 KB
testcase_29 AC 1,036 ms
94,208 KB
testcase_30 AC 1,078 ms
94,516 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 47 ms
62,336 KB
testcase_37 AC 49 ms
62,464 KB
testcase_38 AC 46 ms
61,952 KB
testcase_39 AC 47 ms
61,972 KB
testcase_40 AC 47 ms
61,952 KB
testcase_41 AC 141 ms
81,172 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(50):
    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