結果

問題 No.2209 Flip and Reverse
ユーザー ああいいああいい
提出日時 2023-02-10 21:53:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 82,512 KB
最終ジャッジ日時 2024-07-07 16:07:40
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,868 KB
testcase_01 AC 35 ms
53,496 KB
testcase_02 AC 31 ms
52,576 KB
testcase_03 AC 33 ms
52,200 KB
testcase_04 AC 31 ms
52,208 KB
testcase_05 AC 33 ms
52,220 KB
testcase_06 AC 31 ms
52,332 KB
testcase_07 AC 31 ms
53,072 KB
testcase_08 AC 71 ms
82,168 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 31 ms
52,984 KB
testcase_11 AC 32 ms
53,124 KB
testcase_12 AC 32 ms
51,992 KB
testcase_13 AC 31 ms
52,304 KB
testcase_14 AC 87 ms
81,952 KB
testcase_15 AC 86 ms
81,696 KB
testcase_16 AC 89 ms
82,084 KB
testcase_17 AC 91 ms
82,124 KB
testcase_18 AC 86 ms
82,012 KB
testcase_19 AC 86 ms
82,316 KB
testcase_20 AC 88 ms
82,136 KB
testcase_21 AC 90 ms
82,112 KB
testcase_22 AC 89 ms
82,096 KB
testcase_23 AC 91 ms
82,324 KB
testcase_24 AC 82 ms
82,512 KB
testcase_25 AC 81 ms
82,016 KB
testcase_26 AC 84 ms
82,012 KB
testcase_27 AC 86 ms
82,024 KB
testcase_28 AC 78 ms
82,484 KB
testcase_29 AC 77 ms
81,756 KB
testcase_30 AC 77 ms
81,676 KB
testcase_31 AC 75 ms
82,100 KB
testcase_32 AC 72 ms
82,064 KB
testcase_33 AC 72 ms
81,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = input()

ans = 10 ** 6
SS = S[::-1]

tmp = 0
for i in range(N):
    if S[i] != T[i]:
        tmp += 1
if tmp % 2 == 0:
    ans = tmp
tmp = 0
for i in range(N):
    if SS[i] != T[i]:
        tmp += 1
if tmp % 2 == 1 and tmp < ans:
    ans = tmp
print(ans)
0