結果

問題 No.2871 Universal Serial Bus
ユーザー titiatitia
提出日時 2024-09-07 01:12:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 534 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-07 01:12:31
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
10,752 KB
testcase_01 AC 81 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 84 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 81 ms
10,752 KB
testcase_07 AC 85 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 86 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 84 ms
10,752 KB
testcase_12 AC 82 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 84 ms
10,752 KB
testcase_15 WA -
testcase_16 AC 83 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())

S=[input().strip() for i in range(H)]
T=[input().strip() for i in range(H)]

flag=1
for i in range(H):
    for j in range(W):
        if S[i][j]==T[i][j]:
            flag=0


ANS=0
c=1
if flag:
    for i in range(1,100000):
        if i%2==1:
            ANS+=i*c*(1-pow(2,-(i-1)))
            c-=c*(1-pow(2,-(i-1)))

else:
    for i in range(1,100000):
        if i%2==0:
            ANS+=i*c*(1-pow(2,-(i-1)))
            c-=c*(1-pow(2,-(i-1)))

print(ANS)
    
0