結果

問題 No.2331 Maximum Quadrilateral
ユーザー pありpあり
提出日時 2023-05-28 15:52:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-06-08 08:43:46
合計ジャッジ時間 9,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
73,416 KB
testcase_01 AC 233 ms
72,192 KB
testcase_02 AC 270 ms
72,064 KB
testcase_03 AC 281 ms
72,704 KB
testcase_04 AC 302 ms
72,944 KB
testcase_05 AC 327 ms
73,592 KB
testcase_06 AC 286 ms
73,472 KB
testcase_07 AC 265 ms
73,004 KB
testcase_08 AC 226 ms
71,936 KB
testcase_09 AC 239 ms
71,936 KB
testcase_10 AC 183 ms
71,424 KB
testcase_11 AC 206 ms
72,192 KB
testcase_12 AC 191 ms
71,296 KB
testcase_13 AC 200 ms
71,552 KB
testcase_14 AC 343 ms
73,088 KB
testcase_15 AC 87 ms
68,096 KB
testcase_16 AC 155 ms
71,248 KB
testcase_17 AC 67 ms
66,176 KB
testcase_18 AC 111 ms
68,224 KB
testcase_19 AC 70 ms
66,944 KB
testcase_20 AC 363 ms
73,656 KB
testcase_21 AC 322 ms
73,600 KB
testcase_22 AC 351 ms
73,216 KB
testcase_23 AC 326 ms
73,856 KB
testcase_24 AC 363 ms
73,600 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 43 ms
52,096 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
51,840 KB
testcase_29 AC 48 ms
52,096 KB
testcase_30 WA -
testcase_31 AC 43 ms
51,840 KB
testcase_32 AC 41 ms
52,480 KB
testcase_33 AC 37 ms
52,608 KB
testcase_34 AC 37 ms
52,352 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 37 ms
52,480 KB
testcase_37 AC 37 ms
52,352 KB
testcase_38 AC 39 ms
51,968 KB
testcase_39 AC 40 ms
51,712 KB
testcase_40 AC 37 ms
51,968 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 37 ms
52,608 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

ans = 0
for i in range(n):
  x1,y1 = xy[i]
  for j in range(i+1, n):
    x2,y2 = xy[j]
    
    v_max = 0
    v_min = 0
    
    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)
    
    ans = max(ans, v_max-v_min)

print(ans)
    
    
  
0