結果
| 問題 |
No.224 文字列変更(easy)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-30 22:45:17 |
| 言語 | Julia (2.11.2) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 126 bytes |
| コンパイル時間 | 341 ms |
| コンパイル使用メモリ | 6,948 KB |
| 実行使用メモリ | 877,376 KB |
| 最終ジャッジ日時 | 2024-12-20 21:42:31 |
| 合計ジャッジ時間 | 58,937 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 TLE * 1 MLE * 1 |
ソースコード
n = int(input())
s = list(input())
t = list(input())
cnt = 0
for x, y in zip(s, t):
if x != y:
cnt += 1
print(cnt)