結果

問題 No.884 Eat and Add
ユーザー lloyzlloyz
提出日時 2022-09-05 21:12:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,332 KB
最終ジャッジ日時 2024-04-30 23:27:25
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 136 ms
14,200 KB
testcase_08 AC 138 ms
14,200 KB
testcase_09 AC 205 ms
14,200 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

L = list(map(int, list(input())))

L.reverse()
n = len(L)
Seq = []
if L[0] == 0:
    Seq.append(0)
res = 1
for i in range(1, n):
    if L[i] == L[i - 1]:
        res += 1
    else:
        Seq.append(res)
        res = 1
    if i == n - 1:
        Seq.append(res)
m = len(Seq)
ans = 0
seq0, seq1 = 0, 0
for i in range(0, m, 2):
    if i == m - 1:
        seq1 += Seq[i]
        seq0 = 0
    else:
        seq1 += Seq[i]
        seq0 += Seq[i + 1]
    if seq1 == 0:
        seq0 = 0
        continue
    if seq1 == 1:
        ans += 1
        if seq0 == 1:
            seq1 = 1
            seq0 = 0
        else:
            seq1 = 0
            seq0 = 0
    elif seq1 >= 2:
        if seq0 == 1:
            ans += 1
            seq1 = 1
        else:
            ans += 2
            seq1 = 0
        seq0 = 0
print(min(ans, sum(L)))
0