結果

問題 No.2375 watasou and hibit's baseball
ユーザー 👑 p-adicp-adic
提出日時 2023-07-08 16:58:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,550 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 123,312 KB
最終ジャッジ日時 2024-07-22 12:27:01
合計ジャッジ時間 26,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,200 KB
testcase_01 AC 40 ms
53,656 KB
testcase_02 AC 39 ms
54,516 KB
testcase_03 AC 628 ms
98,480 KB
testcase_04 AC 51 ms
62,768 KB
testcase_05 AC 52 ms
63,560 KB
testcase_06 AC 1,550 ms
123,188 KB
testcase_07 AC 38 ms
52,388 KB
testcase_08 AC 209 ms
83,168 KB
testcase_09 AC 39 ms
53,688 KB
testcase_10 AC 46 ms
61,348 KB
testcase_11 AC 86 ms
77,860 KB
testcase_12 AC 1,004 ms
121,948 KB
testcase_13 AC 463 ms
96,708 KB
testcase_14 AC 38 ms
52,324 KB
testcase_15 AC 325 ms
83,064 KB
testcase_16 AC 267 ms
80,328 KB
testcase_17 AC 968 ms
120,216 KB
testcase_18 AC 48 ms
60,868 KB
testcase_19 AC 40 ms
52,404 KB
testcase_20 AC 89 ms
77,532 KB
testcase_21 AC 1,005 ms
120,728 KB
testcase_22 AC 42 ms
53,468 KB
testcase_23 AC 931 ms
117,528 KB
testcase_24 AC 908 ms
117,656 KB
testcase_25 AC 39 ms
54,336 KB
testcase_26 AC 1,169 ms
122,480 KB
testcase_27 AC 1,195 ms
122,220 KB
testcase_28 AC 1,224 ms
122,288 KB
testcase_29 AC 1,216 ms
122,232 KB
testcase_30 AC 1,286 ms
122,772 KB
testcase_31 AC 1,286 ms
122,736 KB
testcase_32 AC 1,346 ms
123,312 KB
testcase_33 AC 1,249 ms
122,636 KB
testcase_34 AC 1,181 ms
122,488 KB
testcase_35 AC 1,319 ms
122,616 KB
testcase_36 AC 1,245 ms
122,208 KB
testcase_37 AC 1,128 ms
121,812 KB
testcase_38 AC 919 ms
117,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,A,B=J()
L=R(N)
Z=[list(J())for i in L]
P=R(1<<N)
D=[[[(S==1<<i)*(i==j)for j in L]for i in L]for S in P]
a=1
for S in P:
	for h in R(N**3):
		i,j,k=h%N,h//N%N,h//N**2
		d,v,w=D[S][i][j],Z[j],Z[k]
		if(S>>k&1<1)*d:
			if abs(w[0]-Z[i][0])+abs(w[1]-Z[i][1])+(i!=j)*(abs(w[0]-v[0])+abs(w[1]-v[1]))>=A or abs(w[2]-v[2])>=B:D[S|1<<k][j][k],a=d+1,max(a,d+1)
print(a)
0