結果

問題 No.2708 Jewel holder
ユーザー 茅ヶ崎裕太茅ヶ崎裕太
提出日時 2024-03-31 14:06:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-30 18:58:47
合計ジャッジ時間 2,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 34 ms
10,880 KB
testcase_03 AC 33 ms
11,008 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 39 ms
10,880 KB
testcase_12 AC 33 ms
10,880 KB
testcase_13 AC 38 ms
10,880 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 39 ms
10,880 KB
testcase_16 AC 33 ms
10,880 KB
testcase_17 AC 325 ms
11,008 KB
testcase_18 AC 48 ms
10,880 KB
testcase_19 AC 50 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import copy
sys.setrecursionlimit(10**4)
ans=0
def f(y,x,l,c,k):
    
    
    global ans
    if fi[y][x]=="o":
        c+=1
    elif fi[y][x]=="x":
        c-=1
        if c<0:
            
            return
    if y+1==H and x+1==W:
        
        ans+=1
        return
    k.append([y,x])
    
    
    l[y][x]=True
    for i,j in[[1,0],[0,1]]:
        
        if y+i<H and x+j<W :
            if not l[y+i][x+j]:
                if fi[y+i][x+j]!="#":
                    f(y+i,x+j,copy.deepcopy(l),c,k.copy())
H,W=map(int,input().split())
fi=[list(input()) for _ in range(H)]
l=[]
aa=[[False for _ in range(W)]for _ in range(H)]
f(0,0,aa,0,l)
print(ans)
0