結果

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

テストケース

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

ソースコード

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:
    for i in range(1,100000,2):
        P[i]=1
if b1:
    for i in range(0,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