結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-01 16:34:05 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 172 ms / 5,000 ms |
| コード長 | 91 bytes |
| 記録 | |
| コンパイル時間 | 734 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-03 19:22:35 |
| 合計ジャッジ時間 | 5,613 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge3_0 |
| 純コード判定待ち |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
n=int(input()) S=input() T=input() m=0 x=0 while m<n: if S[m]!=T[m]: x+=1 m+=1 print(x)