結果
| 問題 | 
                            No.224 文字列変更(easy)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-05-03 17:25:06 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 42 ms / 5,000 ms | 
| コード長 | 110 bytes | 
| コンパイル時間 | 163 ms | 
| コンパイル使用メモリ | 82,236 KB | 
| 実行使用メモリ | 52,224 KB | 
| 最終ジャッジ日時 | 2024-11-21 19:42:09 | 
| 合計ジャッジ時間 | 1,916 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 22 | 
ソースコード
n = int(input())
S = input()
T = input()
cnt = 0
for s, t in zip(S, T):
    if s!=t:
        cnt+=1
print(cnt)