結果

問題 No.2708 Jewel holder
ユーザー ThetaTheta
提出日時 2024-04-10 15:41:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2024-10-02 17:56:19
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 31 ms
52,096 KB
testcase_06 AC 32 ms
51,968 KB
testcase_07 AC 32 ms
51,712 KB
testcase_08 AC 36 ms
56,448 KB
testcase_09 AC 35 ms
57,088 KB
testcase_10 AC 33 ms
52,224 KB
testcase_11 AC 39 ms
61,440 KB
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 45 ms
60,416 KB
testcase_14 AC 34 ms
56,832 KB
testcase_15 AC 43 ms
63,104 KB
testcase_16 AC 34 ms
52,224 KB
testcase_17 AC 62 ms
75,784 KB
testcase_18 AC 49 ms
71,296 KB
testcase_19 AC 50 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations


def main():
    H, W = map(int, input().split())
    board = [list(input()) for _ in range(H)]
    ctr = 0
    for h_dir in combinations(range(H + W - 2), H - 1):
        current = [0, 0]
        jewel = 1
        for idx in range(H + W - 2):
            if idx in h_dir:
                current = [current[0] + 1, current[1]]
            else:
                current = [current[0], current[1] + 1]
            if board[current[0]][current[1]] == "#":
                break
            if board[current[0]][current[1]] == "o":
                jewel += 1
            else:
                jewel -= 1
                if jewel < 0:
                    break
        else:
            ctr += 1
    print(ctr)


if __name__ == "__main__":
    main()
0