結果
| 問題 | 
                            No.224 文字列変更(easy)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-02-06 08:50:23 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 12 ms / 5,000 ms | 
| コード長 | 176 bytes | 
| コンパイル時間 | 54 ms | 
| コンパイル使用メモリ | 7,040 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-18 02:12:15 | 
| 合計ジャッジ時間 | 1,048 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 22 | 
ソースコード
#coding: utf-8 ##yuki_224 n=int(raw_input()) s=raw_input() t=raw_input() ls=list(s[:n]) lt=list(t[:n]) count=0 for i in range(n): if ls[i]!=lt[i]: count+=1 print count