結果

問題 No.2209 Flip and Reverse
ユーザー Yaowei LyuYaowei Lyu
提出日時 2023-02-10 21:27:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-07-07 15:36:28
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 41 ms
51,456 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 62 ms
69,632 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 69 ms
69,760 KB
testcase_19 AC 67 ms
69,632 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 66 ms
69,760 KB
testcase_24 AC 63 ms
69,632 KB
testcase_25 WA -
testcase_26 AC 65 ms
69,504 KB
testcase_27 AC 63 ms
70,016 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 59 ms
69,248 KB
testcase_31 WA -
testcase_32 AC 60 ms
69,504 KB
testcase_33 AC 60 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
n = int(input())
s = input()
t = input()
d = sum([s[i] != t[i] for i in range(n)])
if d % 2 == 0:
    print(d)
else:
    t = list(reversed(t))
    print(sum([s[i] != t[i] for i in range(n)]))
0