結果

問題 No.2708 Jewel holder
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 14:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 76,304 KB
最終ジャッジ日時 2024-09-30 18:50:37
合計ジャッジ時間 1,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,464 KB
testcase_01 AC 36 ms
52,124 KB
testcase_02 AC 37 ms
54,056 KB
testcase_03 AC 35 ms
52,936 KB
testcase_04 AC 34 ms
53,416 KB
testcase_05 AC 33 ms
52,808 KB
testcase_06 AC 33 ms
52,536 KB
testcase_07 AC 32 ms
54,104 KB
testcase_08 AC 44 ms
64,120 KB
testcase_09 AC 40 ms
61,184 KB
testcase_10 AC 49 ms
64,524 KB
testcase_11 AC 58 ms
69,980 KB
testcase_12 AC 34 ms
52,596 KB
testcase_13 AC 48 ms
64,172 KB
testcase_14 AC 35 ms
53,232 KB
testcase_15 AC 51 ms
65,904 KB
testcase_16 AC 35 ms
59,424 KB
testcase_17 AC 79 ms
76,304 KB
testcase_18 AC 60 ms
72,028 KB
testcase_19 AC 54 ms
66,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


H, W = MI()
A = [list(input()) for _ in range(H)]

ans = 0
for bit in range(1 << (H + W - 2)):
    jewel = 1
    h, w = 0, 0
    is_ok = True
    for i in range(H + W - 2):
        if (bit >> i) & 1:
            h += 1
        else:
            w += 1

        if h >= H or w >= W:
            is_ok = False
            break
        if A[h][w] == "o":
            jewel += 1
        elif A[h][w] == "x":
            jewel -= 1
            if jewel < 0:
                is_ok = False
                break
        else:
            is_ok = False
            break

    if is_ok:
        ans += 1

print(ans)
0