結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2022-08-05 23:44:15 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 98 ms / 5,000 ms |
| + 622µs | |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-28 06:52:28 |
| 合計ジャッジ時間 | 4,592 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
import sys
readline=sys.stdin.readline
N=int(readline())
ans=0
for s,t in zip(readline().rstrip(),readline().rstrip()):
if s!=t:
ans+=1
print(ans)
vwxyz