結果

問題 No.2209 Flip and Reverse
ユーザー deepjugglingdeepjuggling
提出日時 2023-02-10 22:20:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 174,112 KB
最終ジャッジ日時 2024-07-07 16:31:56
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 34 ms
51,840 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 35 ms
51,584 KB
testcase_13 AC 34 ms
51,712 KB
testcase_14 AC 190 ms
173,980 KB
testcase_15 AC 213 ms
174,104 KB
testcase_16 AC 216 ms
173,600 KB
testcase_17 AC 210 ms
173,600 KB
testcase_18 AC 208 ms
174,112 KB
testcase_19 AC 208 ms
173,728 KB
testcase_20 AC 211 ms
174,108 KB
testcase_21 AC 211 ms
173,980 KB
testcase_22 AC 208 ms
174,112 KB
testcase_23 AC 197 ms
174,068 KB
testcase_24 AC 202 ms
173,984 KB
testcase_25 AC 182 ms
174,108 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 169 ms
173,732 KB
testcase_29 AC 167 ms
173,732 KB
testcase_30 AC 173 ms
173,856 KB
testcase_31 AC 167 ms
173,664 KB
testcase_32 AC 163 ms
173,600 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()
s = list(s)
t = list(t)
ss = list(s)
ss.reverse()
mae = 0
usi = 0
for i in range(n):
    if s[i] != t[i]:
        mae += 1
    if ss[i] != t[i]:
        usi += 1
if mae <= usi and mae % 2 == 0:
    print(mae)
else:
    print(usi)
0