結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 34 ms
52,224 KB
testcase_11 AC 41 ms
59,352 KB
testcase_12 AC 42 ms
58,496 KB
testcase_13 AC 40 ms
58,972 KB
testcase_14 AC 42 ms
59,648 KB
testcase_15 AC 43 ms
59,008 KB
testcase_16 AC 1,846 ms
95,232 KB
testcase_17 AC 1,751 ms
94,820 KB
testcase_18 AC 1,666 ms
94,696 KB
testcase_19 AC 1,586 ms
94,320 KB
testcase_20 AC 1,517 ms
95,232 KB
testcase_21 AC 1,669 ms
94,080 KB
testcase_22 AC 1,697 ms
94,848 KB
testcase_23 AC 1,655 ms
94,208 KB
testcase_24 AC 1,781 ms
94,336 KB
testcase_25 AC 1,654 ms
94,720 KB
testcase_26 AC 1,668 ms
94,876 KB
testcase_27 AC 1,709 ms
94,436 KB
testcase_28 AC 1,709 ms
94,704 KB
testcase_29 AC 1,821 ms
94,588 KB
testcase_30 AC 1,825 ms
94,576 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 46 ms
61,912 KB
testcase_37 AC 48 ms
61,952 KB
testcase_38 AC 46 ms
61,952 KB
testcase_39 AC 47 ms
61,568 KB
testcase_40 AC 48 ms
61,696 KB
testcase_41 AC 151 ms
80,896 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(80):
    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