結果

問題 No.2209 Flip and Reverse
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-02-10 21:45:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 189,592 KB
最終ジャッジ日時 2024-07-07 15:58:40
合計ジャッジ時間 6,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,356 KB
testcase_01 AC 40 ms
57,012 KB
testcase_02 AC 43 ms
55,296 KB
testcase_03 AC 45 ms
56,616 KB
testcase_04 AC 43 ms
56,312 KB
testcase_05 AC 39 ms
55,808 KB
testcase_06 AC 39 ms
56,428 KB
testcase_07 AC 38 ms
55,356 KB
testcase_08 WA -
testcase_09 AC 40 ms
56,408 KB
testcase_10 AC 39 ms
56,188 KB
testcase_11 AC 39 ms
55,412 KB
testcase_12 AC 41 ms
55,928 KB
testcase_13 AC 39 ms
57,340 KB
testcase_14 AC 223 ms
189,516 KB
testcase_15 AC 219 ms
189,028 KB
testcase_16 AC 216 ms
189,244 KB
testcase_17 AC 220 ms
188,900 KB
testcase_18 AC 220 ms
189,380 KB
testcase_19 AC 215 ms
189,048 KB
testcase_20 AC 215 ms
189,176 KB
testcase_21 AC 224 ms
189,328 KB
testcase_22 AC 225 ms
189,304 KB
testcase_23 AC 220 ms
188,828 KB
testcase_24 AC 209 ms
189,468 KB
testcase_25 AC 222 ms
188,968 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 195 ms
189,044 KB
testcase_29 AC 195 ms
189,160 KB
testcase_30 AC 198 ms
189,304 KB
testcase_31 AC 202 ms
188,980 KB
testcase_32 AC 197 ms
188,888 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
S = list(input())[:-1]
T = list(input())[:-1]
X = sum(S[i]!=T[i] for i in range(N))
if X%2:
    X = (1<<60)
Y = sum(S[N-1-i]!=T[i] for i in range(N))
if Y%2==0:
    Y += 1
    
    

print(min(X,Y))
0