結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
74,368 KB
testcase_01 AC 210 ms
72,704 KB
testcase_02 AC 238 ms
72,832 KB
testcase_03 AC 214 ms
73,728 KB
testcase_04 AC 276 ms
74,368 KB
testcase_05 AC 318 ms
73,728 KB
testcase_06 AC 280 ms
73,984 KB
testcase_07 AC 260 ms
73,472 KB
testcase_08 AC 204 ms
72,576 KB
testcase_09 AC 191 ms
72,576 KB
testcase_10 AC 178 ms
72,320 KB
testcase_11 AC 174 ms
72,064 KB
testcase_12 AC 178 ms
72,192 KB
testcase_13 AC 177 ms
72,192 KB
testcase_14 AC 295 ms
73,984 KB
testcase_15 AC 81 ms
68,864 KB
testcase_16 AC 144 ms
71,808 KB
testcase_17 AC 64 ms
66,304 KB
testcase_18 AC 99 ms
68,480 KB
testcase_19 AC 68 ms
67,072 KB
testcase_20 AC 323 ms
75,520 KB
testcase_21 AC 333 ms
75,264 KB
testcase_22 AC 324 ms
76,032 KB
testcase_23 AC 326 ms
73,984 KB
testcase_24 AC 334 ms
75,648 KB
testcase_25 AC 39 ms
51,456 KB
testcase_26 AC 36 ms
52,608 KB
testcase_27 AC 36 ms
52,096 KB
testcase_28 AC 34 ms
51,840 KB
testcase_29 AC 35 ms
51,840 KB
testcase_30 WA -
testcase_31 AC 37 ms
51,840 KB
testcase_32 AC 37 ms
52,352 KB
testcase_33 AC 38 ms
51,968 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 36 ms
52,096 KB
testcase_36 AC 35 ms
51,968 KB
testcase_37 AC 35 ms
52,096 KB
testcase_38 AC 37 ms
52,096 KB
testcase_39 AC 33 ms
52,096 KB
testcase_40 AC 34 ms
51,840 KB
testcase_41 AC 36 ms
51,968 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 35 ms
51,584 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