結果

問題 No.2871 Universal Serial Bus
ユーザー vwxyzvwxyz
提出日時 2024-09-06 21:32:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-09-06 21:32:13
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
14,848 KB
testcase_01 AC 78 ms
14,848 KB
testcase_02 AC 73 ms
14,848 KB
testcase_03 AC 60 ms
14,720 KB
testcase_04 AC 77 ms
14,848 KB
testcase_05 AC 70 ms
15,104 KB
testcase_06 AC 78 ms
14,848 KB
testcase_07 AC 76 ms
15,104 KB
testcase_08 AC 58 ms
14,720 KB
testcase_09 AC 78 ms
14,848 KB
testcase_10 AC 57 ms
14,976 KB
testcase_11 AC 77 ms
14,848 KB
testcase_12 AC 77 ms
14,848 KB
testcase_13 AC 58 ms
14,976 KB
testcase_14 AC 78 ms
14,848 KB
testcase_15 AC 71 ms
14,848 KB
testcase_16 AC 78 ms
14,976 KB
testcase_17 AC 69 ms
14,848 KB
testcase_18 AC 70 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[list(input()) for h in range(H)]
T=[list(input()) for h in range(H)]
for h in range(H):
    for w in range(W):
        S[h][w]=int(S[h][w]=="#")
        T[h][w]=int(T[h][w]=="#")
b0,b1=0,0
if all(S[h][w]+T[h][w]==1 for h in range(H) for w in range(W)):
    b0=1
if all(S[h][w]+T[H-1-h][W-1-w]==1 for h in range(H) for w in range(W)):
    b1=1
P=[0.5**i for i in range(100000)]
if b0==0:
    for i in range(0,100000,2):
        P[i]=1
if b1==0:
    for i in range(1,100000,2):
        P[i]=1
if b0==0 and b1==0:
    ans=-1
else:
    for i in range(1,100000):
        P[i]*=P[i-1]
    ans=sum(P)+1
print(ans)
0