結果

問題 No.2375 watasou and hibit's baseball
ユーザー 👑 p-adicp-adic
提出日時 2023-07-08 17:03:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,545 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 123,436 KB
最終ジャッジ日時 2024-07-22 12:32:32
合計ジャッジ時間 26,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 645 ms
98,292 KB
testcase_04 AC 56 ms
62,080 KB
testcase_05 AC 56 ms
62,208 KB
testcase_06 AC 1,545 ms
123,184 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 218 ms
83,072 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 49 ms
59,904 KB
testcase_11 AC 98 ms
77,696 KB
testcase_12 AC 1,019 ms
121,480 KB
testcase_13 AC 475 ms
96,512 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 343 ms
82,928 KB
testcase_16 AC 269 ms
80,448 KB
testcase_17 AC 959 ms
120,320 KB
testcase_18 AC 50 ms
59,904 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 101 ms
77,312 KB
testcase_21 AC 998 ms
120,608 KB
testcase_22 AC 42 ms
52,608 KB
testcase_23 AC 913 ms
117,376 KB
testcase_24 AC 887 ms
117,504 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 1,168 ms
122,060 KB
testcase_27 AC 1,188 ms
122,040 KB
testcase_28 AC 1,218 ms
122,164 KB
testcase_29 AC 1,227 ms
122,228 KB
testcase_30 AC 1,286 ms
122,472 KB
testcase_31 AC 1,269 ms
122,612 KB
testcase_32 AC 1,458 ms
123,436 KB
testcase_33 AC 1,224 ms
122,500 KB
testcase_34 AC 1,175 ms
122,476 KB
testcase_35 AC 1,298 ms
122,368 KB
testcase_36 AC 1,237 ms
122,276 KB
testcase_37 AC 1,115 ms
121,908 KB
testcase_38 AC 917 ms
117,376 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 and(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