結果

問題 No.1377 Half xor Half
ユーザー KudeKude
提出日時 2021-02-10 16:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 61,916 KB
最終ジャッジ日時 2024-07-08 02:24:59
合計ジャッジ時間 4,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,684 KB
testcase_01 AC 40 ms
53,132 KB
testcase_02 AC 38 ms
52,264 KB
testcase_03 AC 37 ms
52,496 KB
testcase_04 AC 38 ms
52,836 KB
testcase_05 AC 37 ms
53,440 KB
testcase_06 AC 38 ms
54,120 KB
testcase_07 AC 39 ms
52,456 KB
testcase_08 AC 42 ms
60,096 KB
testcase_09 AC 40 ms
54,804 KB
testcase_10 AC 44 ms
60,356 KB
testcase_11 AC 39 ms
52,572 KB
testcase_12 AC 39 ms
53,040 KB
testcase_13 AC 43 ms
60,288 KB
testcase_14 AC 38 ms
52,248 KB
testcase_15 AC 38 ms
53,516 KB
testcase_16 AC 38 ms
53,816 KB
testcase_17 AC 42 ms
59,444 KB
testcase_18 AC 42 ms
59,008 KB
testcase_19 AC 43 ms
59,312 KB
testcase_20 AC 43 ms
60,728 KB
testcase_21 AC 44 ms
59,084 KB
testcase_22 AC 43 ms
59,196 KB
testcase_23 AC 43 ms
59,868 KB
testcase_24 AC 43 ms
59,508 KB
testcase_25 AC 43 ms
59,936 KB
testcase_26 AC 44 ms
60,604 KB
testcase_27 AC 43 ms
59,936 KB
testcase_28 AC 45 ms
60,604 KB
testcase_29 AC 44 ms
60,968 KB
testcase_30 AC 41 ms
58,652 KB
testcase_31 AC 41 ms
59,364 KB
testcase_32 AC 41 ms
59,340 KB
testcase_33 AC 41 ms
59,264 KB
testcase_34 AC 45 ms
60,924 KB
testcase_35 AC 45 ms
61,692 KB
testcase_36 AC 46 ms
61,612 KB
testcase_37 AC 42 ms
58,884 KB
testcase_38 AC 46 ms
60,808 KB
testcase_39 AC 46 ms
61,008 KB
testcase_40 AC 44 ms
61,612 KB
testcase_41 AC 42 ms
59,792 KB
testcase_42 AC 50 ms
60,752 KB
testcase_43 AC 46 ms
61,208 KB
testcase_44 AC 44 ms
60,900 KB
testcase_45 AC 41 ms
59,828 KB
testcase_46 AC 45 ms
61,076 KB
testcase_47 AC 45 ms
61,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(map(int, input()))
t = list(map(int, input()))
ans = []
for i in range(n):
    if s[i] | s[i+n] != t[i] | t[i+n]:
        print(-1)
        exit()
    if (s[i], s[i+n]) == (t[i], t[i+n]):
        continue
    if (s[i] ^ s[i+n], s[i]) == (t[i], t[i+n]):
        ans.append(i)
        ans.append(i + 1)
    else:
        ans.append(i + n)
        ans.append((i + 1 + n) % (2 * n))
print(len(ans))
print(*ans, sep='\n')
0