結果

問題 No.2708 Jewel holder
ユーザー tipstar0125tipstar0125
提出日時 2024-03-31 14:11:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 76,612 KB
最終ジャッジ日時 2024-09-30 19:06:44
合計ジャッジ時間 1,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,628 KB
testcase_01 AC 35 ms
52,124 KB
testcase_02 AC 36 ms
52,288 KB
testcase_03 AC 37 ms
52,620 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 34 ms
52,292 KB
testcase_06 AC 37 ms
53,216 KB
testcase_07 AC 38 ms
52,428 KB
testcase_08 AC 49 ms
63,632 KB
testcase_09 AC 46 ms
61,420 KB
testcase_10 AC 51 ms
64,640 KB
testcase_11 AC 69 ms
73,660 KB
testcase_12 AC 37 ms
52,864 KB
testcase_13 AC 65 ms
73,068 KB
testcase_14 AC 38 ms
53,184 KB
testcase_15 AC 57 ms
68,912 KB
testcase_16 AC 41 ms
60,352 KB
testcase_17 AC 105 ms
76,436 KB
testcase_18 AC 81 ms
76,444 KB
testcase_19 AC 79 ms
76,612 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    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 and row==H-1 and col==W-1:ans+=1
print(ans)

0