結果
問題 |
No.2209 Flip and Reverse
|
ユーザー |
![]() |
提出日時 | 2023-02-10 21:24:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 80,704 KB |
最終ジャッジ日時 | 2024-07-07 15:31:52 |
合計ジャッジ時間 | 4,165 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 WA * 13 |
ソースコード
mod = 998244353 def main(): import sys input = sys.stdin.readline N = int(input()) S = input().rstrip('\n') T = input().rstrip('\n') ans = 0 for s, t in zip(S, T): if s != t: ans += 1 ans2 = 0 for s, t in zip(S, T[::-1]): if s != t: ans2 += 1 print(min(ans, ans2)) if __name__ == '__main__': main()