結果

問題 No.921 ずんだアロー
ユーザー neterukunneterukun
提出日時 2019-11-08 21:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-09-15 01:13:39
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 38 ms
52,420 KB
testcase_10 AC 73 ms
93,312 KB
testcase_11 AC 76 ms
96,128 KB
testcase_12 AC 51 ms
67,584 KB
testcase_13 AC 67 ms
85,632 KB
testcase_14 AC 71 ms
89,344 KB
testcase_15 AC 58 ms
77,568 KB
testcase_16 AC 48 ms
61,696 KB
testcase_17 AC 74 ms
92,160 KB
testcase_18 AC 63 ms
81,664 KB
testcase_19 AC 63 ms
81,664 KB
testcase_20 AC 63 ms
82,304 KB
testcase_21 AC 62 ms
82,304 KB
testcase_22 AC 64 ms
81,664 KB
testcase_23 AC 75 ms
95,948 KB
testcase_24 AC 64 ms
82,560 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
            last = True
print(ans)
0