結果

問題 No.2375 watasou and hibit's baseball
ユーザー 👑 p-adicp-adic
提出日時 2023-07-08 16:44:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 132,028 KB
最終ジャッジ日時 2024-07-22 12:10:50
合計ジャッジ時間 28,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 WA -
testcase_04 AC 55 ms
63,360 KB
testcase_05 AC 57 ms
63,488 KB
testcase_06 WA -
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 237 ms
85,248 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 49 ms
60,544 KB
testcase_11 AC 108 ms
77,952 KB
testcase_12 AC 1,082 ms
122,356 KB
testcase_13 AC 561 ms
97,952 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 377 ms
84,448 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 46 ms
60,288 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 107 ms
78,208 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,608 KB
testcase_23 AC 850 ms
119,808 KB
testcase_24 AC 933 ms
120,448 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,481 ms
132,028 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 921 ms
120,064 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>>i==1and 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]=d=d+1
		a=max(a,d)
print(a)
0