結果

問題 No.2331 Maximum Quadrilateral
ユーザー pありpあり
提出日時 2023-05-28 15:54:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-12-27 09:36:51
合計ジャッジ時間 9,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
74,368 KB
testcase_01 AC 233 ms
72,704 KB
testcase_02 AC 266 ms
72,832 KB
testcase_03 AC 242 ms
73,216 KB
testcase_04 AC 315 ms
74,112 KB
testcase_05 AC 332 ms
74,112 KB
testcase_06 AC 321 ms
74,368 KB
testcase_07 AC 296 ms
73,472 KB
testcase_08 AC 226 ms
72,576 KB
testcase_09 AC 215 ms
73,088 KB
testcase_10 AC 201 ms
72,448 KB
testcase_11 AC 195 ms
71,680 KB
testcase_12 AC 203 ms
72,192 KB
testcase_13 AC 198 ms
72,576 KB
testcase_14 AC 342 ms
74,216 KB
testcase_15 AC 87 ms
68,096 KB
testcase_16 AC 160 ms
72,064 KB
testcase_17 AC 67 ms
66,560 KB
testcase_18 AC 110 ms
68,608 KB
testcase_19 AC 75 ms
67,200 KB
testcase_20 AC 369 ms
76,032 KB
testcase_21 AC 370 ms
75,904 KB
testcase_22 AC 371 ms
76,204 KB
testcase_23 AC 370 ms
74,112 KB
testcase_24 AC 370 ms
75,520 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 38 ms
52,608 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 40 ms
51,712 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 WA -
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 40 ms
52,352 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 39 ms
52,096 KB
testcase_38 AC 40 ms
52,352 KB
testcase_39 AC 39 ms
52,096 KB
testcase_40 AC 38 ms
51,584 KB
testcase_41 AC 40 ms
52,224 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 40 ms
51,840 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

xy = []

for i in range(n):
  x,y = map(int, input().split())
  xy.append((x,y))
  
  
def gaiseki(x1,y1, x2, y2, x3,y3):
  v1x = x3-x1
  v2x = x3-x2
  v1y = y3-y1
  v2y = y3-y2
  
  return v1x*v2y - v1y*v2x

M = 10**18
ans = 0
for i in range(n):
  x1,y1 = xy[i]
  for j in range(i+1, n):
    x2,y2 = xy[j]
    
    v_max = -M
    v_min = M
    
    for k in range(n):
      x3,y3 = xy[k]
      now = gaiseki(x1,y1, x2, y2, x3,y3)
      v_max = max(v_max, now)
      v_min = min(v_min, now)
    
    if(v_min!=M and v_max!=-M):
      ans = max(ans, v_max-v_min)

print(ans)
    
    
  
0