結果

問題 No.2209 Flip and Reverse
ユーザー FromBooskaFromBooska
提出日時 2023-02-22 08:52:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-22 12:26:22
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 84 ms
82,048 KB
testcase_09 AC 36 ms
51,584 KB
testcase_10 AC 40 ms
51,456 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 37 ms
51,712 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 100 ms
81,920 KB
testcase_15 AC 101 ms
81,792 KB
testcase_16 AC 101 ms
82,304 KB
testcase_17 AC 99 ms
81,920 KB
testcase_18 AC 101 ms
82,432 KB
testcase_19 AC 101 ms
82,048 KB
testcase_20 AC 100 ms
81,664 KB
testcase_21 AC 100 ms
81,792 KB
testcase_22 AC 103 ms
82,048 KB
testcase_23 AC 102 ms
82,048 KB
testcase_24 AC 98 ms
82,432 KB
testcase_25 AC 99 ms
82,432 KB
testcase_26 AC 101 ms
82,048 KB
testcase_27 AC 100 ms
82,048 KB
testcase_28 AC 88 ms
82,304 KB
testcase_29 AC 89 ms
81,920 KB
testcase_30 AC 87 ms
82,432 KB
testcase_31 AC 88 ms
82,048 KB
testcase_32 AC 85 ms
82,048 KB
testcase_33 AC 85 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# S head, S tailを用意し、それぞれTと何個違うかdiffを数える
# headで合うためにはdiffは偶数必要、tailで合うためにはdiffは奇数必要
# 偶数のhead diff, 奇数のtail diffで小さいほうが答え
# 両方ない場合もあるのだろうか。。。

N = int(input())
S_head = input()
S_tail = S_head[::-1]
T = input()

S_head_diff = 0
for i in range(N):
    if S_head[i] != T[i]:
        S_head_diff += 1

S_tail_diff = 0
for i in range(N):
    if S_tail[i] != T[i]:
        S_tail_diff += 1

ans_list = []
if S_head_diff %2 == 0:
    ans_list.append(S_head_diff)
if S_tail_diff %2 == 1:
    ans_list.append(S_tail_diff)
ans = min(ans_list)
print(ans)
0