結果
| 問題 | No.3114 0→1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-19 01:01:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 298 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,872 KB |
| 最終ジャッジ日時 | 2026-07-09 21:00:48 |
| 合計ジャッジ時間 | 5,170 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | WA * 30 |
ソースコード
def min_operations_to_good_string(n, s):
ops = 0
i = 0
while i < n - 1:
if s[i] == '0' and s[i + 1] == '0':
ops += 1
i += 2
else:
i += 1
return ops
n = int(input())
s = input().strip()
print(min_operations_to_good_string(n, s))