結果
問題 | No.2871 Universal Serial Bus |
ユーザー | vwxyz |
提出日時 | 2024-09-06 21:29:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 624 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-06 21:29:46 |
合計ジャッジ時間 | 1,672 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
11,136 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | WA | - |
testcase_03 | AC | 30 ms
11,008 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | WA | - |
testcase_06 | AC | 32 ms
10,880 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | AC | 31 ms
10,880 KB |
testcase_09 | AC | 31 ms
10,880 KB |
testcase_10 | AC | 30 ms
10,880 KB |
testcase_11 | AC | 30 ms
11,008 KB |
testcase_12 | AC | 31 ms
10,880 KB |
testcase_13 | AC | 31 ms
10,880 KB |
testcase_14 | AC | 31 ms
10,880 KB |
testcase_15 | WA | - |
testcase_16 | AC | 30 ms
10,880 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
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(1000)] if b0: for i in range(1,1000,2): P[i]=1 if b1: for i in range(0,1000,2): P[i]=1 if b0==0 and b1==0: ans=-1 else: for i in range(1,1000): P[i]*=P[i-1] ans=sum(P)+1 print(ans)