結果

問題 No.921 ずんだアロー
ユーザー neterukunneterukun
提出日時 2019-11-08 21:28:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-09-15 01:11:58
合計ジャッジ時間 2,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 WA -
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 58 ms
67,584 KB
testcase_13 AC 79 ms
85,504 KB
testcase_14 AC 82 ms
88,960 KB
testcase_15 AC 68 ms
76,672 KB
testcase_16 AC 52 ms
61,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 88 ms
95,488 KB
testcase_24 AC 72 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def run_length_compress(string):
    string = string + ["@"]
    n = len(string)

    begin = 0
    end = 1
    cnt = 1
    ans = []
    while True: 
        if end >= n:
            break
        if string[begin] == string[end]:
            end += 1
            cnt += 1
        else: 
            ans.append((cnt, string[begin]))
            begin = end
            end = begin + 1
            cnt = 1 
    
    return ans

n = int(input())
a = list(map(int, input().split()))

run_a = run_length_compress(a)
last = False
ans = 0
for num, _ in run_a:
    if last:
        if num == 1:
            last = False
        else:
            ans += num - 1
            last = True
    else:
        if num == 1:
            ans += 1
            last = True
        else:
            ans += num
            lsat = True
print(ans)
0