結果

問題 No.3114 0→1
ユーザー Khavid Ngô
提出日時 2025-04-19 01:01:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-04-19 01:01:52
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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))
0