結果

問題 No.2209 Flip and Reverse
ユーザー KudeKude
提出日時 2023-02-10 21:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 80,432 KB
最終ジャッジ日時 2024-07-07 15:41:44
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 128 ms
80,000 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 39 ms
51,584 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
51,456 KB
testcase_14 AC 158 ms
79,872 KB
testcase_15 AC 153 ms
79,744 KB
testcase_16 AC 153 ms
80,384 KB
testcase_17 AC 153 ms
79,872 KB
testcase_18 AC 153 ms
79,872 KB
testcase_19 AC 150 ms
80,256 KB
testcase_20 AC 153 ms
80,256 KB
testcase_21 AC 154 ms
80,224 KB
testcase_22 AC 157 ms
80,256 KB
testcase_23 AC 153 ms
80,256 KB
testcase_24 AC 147 ms
80,256 KB
testcase_25 AC 143 ms
80,256 KB
testcase_26 AC 147 ms
79,872 KB
testcase_27 AC 145 ms
80,000 KB
testcase_28 AC 136 ms
80,432 KB
testcase_29 AC 135 ms
80,000 KB
testcase_30 AC 134 ms
80,128 KB
testcase_31 AC 136 ms
80,224 KB
testcase_32 AC 129 ms
80,128 KB
testcase_33 AC 131 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()
c0 = sum(c0 != c1 for c0, c1 in zip(s, t))
c1 = sum(c0 != c1 for c0, c1 in zip(reversed(s), t))
ans = c0 if c0 % 2 == 0 else c1
print(ans)
0