結果

問題 No.2209 Flip and Reverse
ユーザー chankei271828chankei271828
提出日時 2023-02-10 22:22:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 174,488 KB
最終ジャッジ日時 2024-07-07 16:34:05
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,904 KB
testcase_01 AC 30 ms
51,688 KB
testcase_02 AC 30 ms
52,152 KB
testcase_03 AC 33 ms
53,084 KB
testcase_04 AC 32 ms
52,060 KB
testcase_05 AC 32 ms
53,536 KB
testcase_06 AC 31 ms
52,336 KB
testcase_07 AC 30 ms
52,128 KB
testcase_08 AC 165 ms
173,872 KB
testcase_09 AC 34 ms
52,088 KB
testcase_10 AC 34 ms
52,940 KB
testcase_11 AC 38 ms
52,752 KB
testcase_12 AC 34 ms
52,720 KB
testcase_13 AC 34 ms
52,148 KB
testcase_14 AC 193 ms
174,224 KB
testcase_15 AC 192 ms
174,096 KB
testcase_16 AC 188 ms
174,060 KB
testcase_17 AC 188 ms
173,808 KB
testcase_18 AC 187 ms
174,236 KB
testcase_19 AC 185 ms
173,856 KB
testcase_20 AC 194 ms
174,196 KB
testcase_21 AC 188 ms
174,252 KB
testcase_22 AC 186 ms
174,304 KB
testcase_23 AC 189 ms
174,312 KB
testcase_24 AC 180 ms
174,348 KB
testcase_25 AC 183 ms
173,804 KB
testcase_26 AC 186 ms
174,244 KB
testcase_27 AC 182 ms
174,288 KB
testcase_28 AC 168 ms
174,488 KB
testcase_29 AC 166 ms
173,856 KB
testcase_30 AC 166 ms
173,740 KB
testcase_31 AC 179 ms
174,124 KB
testcase_32 AC 177 ms
174,364 KB
testcase_33 AC 167 ms
174,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
T=list(input())
#偶数回で
cnt1=0
for i in range(N):
    if S[i]!=T[i]:
        cnt1+=1
S=list(reversed(S))
cnt2=0
for i in range(N):
    if S[i]!=T[i]:
        cnt2+=1
if cnt1%2==0:
    print(cnt1)
else:
    print(cnt2)
0