結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-01-03 17:28:15 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 640 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,624 KB |
| 最終ジャッジ日時 | 2026-01-03 17:28:20 |
| 合計ジャッジ時間 | 4,943 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 22 |
ソースコード
n = int(input("Enter the number of stones: "))
S = input("Enter the current state of planks: ")
T = input("Enter the original blueprint of ships: ")
replacements = sum(1 for i in range(n) if S[i] != T[i])
print(replacements)
vjudge1