結果

問題 No.2209 Flip and Reverse
ユーザー タコイモタコイモ
提出日時 2023-02-10 21:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 164,880 KB
最終ジャッジ日時 2024-07-07 15:36:42
合計ジャッジ時間 5,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,916 KB
testcase_01 AC 42 ms
54,664 KB
testcase_02 AC 41 ms
54,508 KB
testcase_03 AC 41 ms
54,536 KB
testcase_04 AC 39 ms
54,376 KB
testcase_05 AC 39 ms
54,276 KB
testcase_06 AC 40 ms
54,312 KB
testcase_07 AC 41 ms
55,620 KB
testcase_08 AC 168 ms
164,432 KB
testcase_09 AC 40 ms
55,032 KB
testcase_10 AC 40 ms
53,800 KB
testcase_11 AC 39 ms
54,356 KB
testcase_12 AC 40 ms
53,668 KB
testcase_13 AC 39 ms
55,932 KB
testcase_14 AC 187 ms
164,216 KB
testcase_15 AC 185 ms
164,684 KB
testcase_16 AC 190 ms
164,336 KB
testcase_17 AC 189 ms
164,508 KB
testcase_18 AC 195 ms
164,096 KB
testcase_19 AC 189 ms
164,880 KB
testcase_20 AC 191 ms
164,452 KB
testcase_21 AC 189 ms
164,544 KB
testcase_22 AC 188 ms
164,632 KB
testcase_23 AC 190 ms
164,544 KB
testcase_24 AC 182 ms
164,348 KB
testcase_25 AC 180 ms
164,432 KB
testcase_26 AC 183 ms
164,684 KB
testcase_27 AC 185 ms
164,324 KB
testcase_28 AC 170 ms
164,212 KB
testcase_29 AC 172 ms
164,424 KB
testcase_30 AC 170 ms
164,416 KB
testcase_31 AC 170 ms
164,460 KB
testcase_32 AC 170 ms
164,744 KB
testcase_33 AC 169 ms
164,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import sys
#sys.setrecursionlimit(500000)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def TI(): return tuple(map(int,sys.stdin.readline().rstrip().split()))
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip())
#for i, pi in enumerate(p):
from collections import defaultdict,deque
import bisect
import itertools
dic = defaultdict(int)
d = deque()
N = I()
S = LS()
T = LS()
ans = 0
ans1 = 0
for i in range(N):
  if S[i] != T[i]:
    ans += 1
S.reverse()
for i in range(N):
  if S[i] != T[i]:
    ans1 += 1
answer = float('inf')
if ans % 2 == 0:
  answer = min(ans,answer)
if ans % 2 == 1:
  answer = min(ans1,answer)
print(answer)
0