結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2022-11-29 05:51:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 5,000 ms |
| コード長 | 117 bytes |
| コンパイル時間 | 244 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2024-10-06 12:27:54 |
| 合計ジャッジ時間 | 1,831 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
N = int(input())
S = input()
T = input()
ans = 0
for a, b in zip(S, T):
if a != b:
ans += 1
print(ans)
norioc