結果

問題 No.2708 Jewel holder
ユーザー hiro1729hiro1729
提出日時 2024-03-31 13:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 76,660 KB
最終ジャッジ日時 2024-09-30 18:09:01
合計ジャッジ時間 1,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 47 ms
62,592 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 47 ms
62,464 KB
testcase_11 AC 54 ms
64,768 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 61 ms
67,584 KB
testcase_14 AC 39 ms
52,736 KB
testcase_15 AC 70 ms
71,424 KB
testcase_16 AC 37 ms
52,736 KB
testcase_17 AC 141 ms
76,544 KB
testcase_18 AC 95 ms
76,660 KB
testcase_19 AC 90 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"

h, w = M()
a = [S() for _ in R(h)]
ans = 0
for i in R(1 << (h + w - 2)):
	if bin(i).count('1') == h - 1:
		c = 1
		ok = True
		ni, nj = 0, 0
		for j in range(h + w - 2):
			if i & (1 << j):
				ni += 1
			else:
				nj += 1
			if a[ni][nj] == '#':
				ok = False
			elif a[ni][nj] == 'o':
				c += 1
			else:
				c -= 1
			if c < 0:
				ok = False
		if ok:
			ans += 1
print(ans)
0