結果
問題 |
No.224 文字列変更(easy)
|
ユーザー |
![]() |
提出日時 | 2025-03-20 21:08:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 137 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 53,864 KB |
最終ジャッジ日時 | 2025-03-20 21:09:32 |
合計ジャッジ時間 | 1,849 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
n = int(input()) S = input().strip() T = input().strip() count = 0 for s, t in zip(S, T): if s != t: count += 1 print(count)