結果
問題 | No.2871 Universal Serial Bus |
ユーザー | titia |
提出日時 | 2024-09-07 01:15:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 650 bytes |
コンパイル時間 | 318 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-07 01:15:43 |
合計ジャッジ時間 | 3,277 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
10,752 KB |
testcase_01 | AC | 94 ms
10,880 KB |
testcase_02 | AC | 135 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 94 ms
10,624 KB |
testcase_05 | AC | 141 ms
10,624 KB |
testcase_06 | AC | 96 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 94 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 94 ms
10,624 KB |
testcase_13 | WA | - |
testcase_14 | AC | 96 ms
10,624 KB |
testcase_15 | AC | 136 ms
10,752 KB |
testcase_16 | AC | 92 ms
10,624 KB |
testcase_17 | AC | 138 ms
10,752 KB |
testcase_18 | AC | 136 ms
10,752 KB |
ソースコード
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)] SINV=[] for i in range(H-1,-1,-1): SINV.append(S[i]) flag1=1 for i in range(H): for j in range(W): if S[i][j]==T[i][j]: flag1=0 flag2=1 for i in range(H): for j in range(W): if SINV[i][j]==T[i][j]: flag2=0 ANS=0 c=1 for i in range(1,100000): if i%2==1 and flag1==1: ANS+=i*c*(1-pow(2,-(i-1))) c-=c*(1-pow(2,-(i-1))) if i%2==0 and flag2==1: ANS+=i*c*(1-pow(2,-(i-1))) c-=c*(1-pow(2,-(i-1))) print(ANS)