結果
問題 | No.2209 Flip and Reverse |
ユーザー | Hydru |
提出日時 | 2023-02-10 21:24:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 251 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 80,524 KB |
最終ジャッジ日時 | 2024-07-07 15:33:14 |
合計ジャッジ時間 | 3,680 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
n=int(input()) S=input() T=input() ans=2**61-1 dif=0 for i in range(n): if S[i]!=T[i]: dif+=1 if dif%2==0: ans=dif U=S[::-1] dif=0 for i in range(n): if T[i]!=U[i]: dif+=1 if dif%2==1: ans=min(ans,dif) print(ans)