結果

問題 No.224 文字列変更(easy)
ユーザー yuppe19 😺
提出日時 2015-06-12 22:29:36
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 123 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 02:00:15
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
n = int(raw_input())
s = raw_input()
t = raw_input()
res = sum(s[i] != t[i] for i in xrange(n))
print res
0