結果

問題 No.2708 Jewel holder
ユーザー tipstar0125tipstar0125
提出日時 2024-03-31 14:08:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 951 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 67,716 KB
最終ジャッジ日時 2024-09-30 19:01:23
合計ジャッジ時間 1,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,552 KB
testcase_01 AC 37 ms
52,232 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,916 KB
testcase_06 AC 38 ms
52,128 KB
testcase_07 AC 39 ms
53,296 KB
testcase_08 AC 41 ms
58,148 KB
testcase_09 WA -
testcase_10 AC 44 ms
59,996 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 38 ms
54,604 KB
testcase_15 AC 51 ms
64,612 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=list(map(int,input().split()))
A=[input() for _ in range(H)]

ans=0
for i in range(1<<(H+W-2)):
    n=i.bit_count()
    if n!=H-1:continue
    bit=i
    row=0
    col=0
    cnt=1
    ok=True
    for j in range(H+W-2):
        if (bit>>j)&1==0:
            if row+1>=H or A[row+1][col]=="#":
                ok=False
                break
            if A[row+1][col]=="x":
                if cnt==0:
                    ok=False
                    break
                cnt-=1
            if A[row+1][col]=="o":
                cnt+=1
            row+=1
        else:
            if col+1>=W or A[row][col+1]=="#":
                ok=False
                break
            if A[row][col+1]=="x":
                if cnt==0:
                    ok=False
                    break
                cnt-=1
            if A[row][col+1]=="o":
                cnt+=1
            col+=1
        # print(bin(bit),row,col,cnt)
    if ok:ans+=1
print(ans)

0