結果
| 問題 | No.224 文字列変更(easy) |
| コンテスト | |
| ユーザー |
nbisco
|
| 提出日時 | 2016-03-30 22:30:02 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 5,000 ms |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 323 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 35,800 KB |
| 最終ジャッジ日時 | 2026-04-01 17:32:19 |
| 合計ジャッジ時間 | 3,072 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#!/usr/bin/env python3 #fileencoding: utf-8 n = int(input()) print(sum([1 if i != j else 0 for i, j in zip(input(),input())]))
nbisco