結果

問題 No.2209 Flip and Reverse
ユーザー flygonflygon
提出日時 2023-02-10 21:23:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 80,856 KB
最終ジャッジ日時 2024-07-07 15:31:26
合計ジャッジ時間 3,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,212 KB
testcase_01 AC 37 ms
52,796 KB
testcase_02 AC 38 ms
52,308 KB
testcase_03 AC 38 ms
53,112 KB
testcase_04 AC 39 ms
51,876 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 37 ms
52,108 KB
testcase_07 AC 38 ms
52,016 KB
testcase_08 WA -
testcase_09 AC 38 ms
51,988 KB
testcase_10 AC 37 ms
52,596 KB
testcase_11 AC 37 ms
52,452 KB
testcase_12 AC 36 ms
52,484 KB
testcase_13 WA -
testcase_14 AC 97 ms
80,256 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 99 ms
80,368 KB
testcase_19 AC 98 ms
80,228 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 97 ms
80,688 KB
testcase_24 AC 96 ms
80,208 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 82 ms
80,748 KB
testcase_29 AC 81 ms
80,648 KB
testcase_30 AC 82 ms
80,196 KB
testcase_31 WA -
testcase_32 AC 78 ms
80,280 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()
ans = 0
for i in range(n):
  if s[i] != t[i]:
    ans += 1
ans2 = 0
s = s[::-1]
for i in range(n):
  if s[i] != t[i]:
    ans2 += 1
 
print(min(ans,ans2))
0