結果

問題 No.2209 Flip and Reverse
ユーザー ああいいああいい
提出日時 2023-02-10 21:51:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 82,836 KB
最終ジャッジ日時 2024-07-07 16:03:57
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,016 KB
testcase_01 AC 39 ms
53,496 KB
testcase_02 AC 38 ms
52,800 KB
testcase_03 AC 35 ms
52,360 KB
testcase_04 AC 36 ms
53,748 KB
testcase_05 AC 36 ms
52,300 KB
testcase_06 AC 36 ms
52,432 KB
testcase_07 AC 37 ms
51,828 KB
testcase_08 WA -
testcase_09 AC 36 ms
53,628 KB
testcase_10 AC 35 ms
52,152 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,300 KB
testcase_13 AC 38 ms
52,560 KB
testcase_14 AC 97 ms
82,316 KB
testcase_15 AC 94 ms
82,040 KB
testcase_16 AC 95 ms
82,128 KB
testcase_17 AC 94 ms
82,228 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 98 ms
82,064 KB
testcase_21 AC 93 ms
81,680 KB
testcase_22 AC 94 ms
82,004 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 90 ms
82,060 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 81 ms
82,048 KB
testcase_29 AC 80 ms
81,760 KB
testcase_30 WA -
testcase_31 AC 81 ms
82,316 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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(tmp)
0