結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-01-03 17:03:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 72 ms / 5,000 ms |
| + 459µs | |
| コード長 | 365 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 95,840 KB |
| 実行使用メモリ | 79,332 KB |
| 最終ジャッジ日時 | 2026-07-20 00:13:13 |
| 合計ジャッジ時間 | 3,112 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
# t = int(input())
# n = int(input())
# a = list(map(int,input().split()))
# a,b,c = map(int,input().split())
# s = list(input())
#By Tahir Huzaifa on 3/01/2026
import math
from collections import Counter
from collections import defaultdict
n = int(input())
s = list(input())
t = list(input())
cnt=0
for i in range(n):
if s[i]!=t[i]:
cnt+=1
print(cnt)
vjudge1