結果

問題 No.2331 Maximum Quadrilateral
ユーザー 👑 p-adicp-adic
提出日時 2023-07-17 18:40:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 399 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 607,480 KB
最終ジャッジ日時 2024-09-17 21:34:50
合計ジャッジ時間 41,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,223 ms
362,036 KB
testcase_02 AC 1,480 ms
418,432 KB
testcase_03 AC 1,503 ms
418,688 KB
testcase_04 MLE -
testcase_05 TLE -
testcase_06 MLE -
testcase_07 AC 1,792 ms
467,816 KB
testcase_08 AC 1,320 ms
353,408 KB
testcase_09 AC 1,142 ms
333,772 KB
testcase_10 AC 1,021 ms
310,272 KB
testcase_11 AC 1,091 ms
328,220 KB
testcase_12 AC 1,024 ms
308,608 KB
testcase_13 AC 1,113 ms
323,888 KB
testcase_14 TLE -
testcase_15 AC 230 ms
114,508 KB
testcase_16 AC 748 ms
241,184 KB
testcase_17 AC 113 ms
85,964 KB
testcase_18 AC 262 ms
124,544 KB
testcase_19 AC 140 ms
89,516 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 34 ms
52,224 KB
testcase_26 AC 36 ms
53,248 KB
testcase_27 AC 39 ms
52,992 KB
testcase_28 AC 38 ms
52,608 KB
testcase_29 AC 38 ms
52,352 KB
testcase_30 AC 37 ms
51,968 KB
testcase_31 AC 37 ms
52,352 KB
testcase_32 AC 38 ms
52,892 KB
testcase_33 AC 36 ms
52,736 KB
testcase_34 AC 39 ms
51,968 KB
testcase_35 AC 35 ms
52,864 KB
testcase_36 AC 36 ms
52,992 KB
testcase_37 AC 35 ms
52,480 KB
testcase_38 AC 36 ms
52,864 KB
testcase_39 AC 34 ms
52,096 KB
testcase_40 AC 34 ms
52,352 KB
testcase_41 AC 34 ms
51,968 KB
testcase_42 AC 35 ms
51,968 KB
testcase_43 AC 36 ms
52,008 KB
testcase_44 AC 35 ms
52,352 KB
testcase_45 AC 34 ms
52,352 KB
testcase_46 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N=int(I())
X=[0]*N
Y=[0]*N
M=R(N)
for i in M:X[i],Y[i]=map(int,I().split())
S=[[[(X[j]-X[i])*(Y[k]-Y[i])-(Y[j]-Y[i])*(X[k]-X[i])for k in M]for j in M]for i in M]
F=[[-10**8,-10**8]for v in R(N*N)]
a=0
for i in R(N):
	for j in R(i+1,N):
		v=i*N+j
		for k in R(N):
			s=S[i][j][k]
			if k!=i and k!=j:
				for c in R(2):F[v][c]=max(F[v][c],[s,-s][c])
		a=max(a,abs(sum(F[v])))
print(a)
0