結果

問題 No.921 ずんだアロー
ユーザー c0degeekc0degeek
提出日時 2019-11-08 22:50:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,804 KB
最終ジャッジ日時 2024-09-15 02:00:39
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 112 ms
17,044 KB
testcase_11 AC 120 ms
17,804 KB
testcase_12 AC 48 ms
11,776 KB
testcase_13 AC 92 ms
14,724 KB
testcase_14 AC 101 ms
16,032 KB
testcase_15 AC 73 ms
13,828 KB
testcase_16 AC 36 ms
11,136 KB
testcase_17 AC 102 ms
16,036 KB
testcase_18 AC 70 ms
16,620 KB
testcase_19 AC 69 ms
16,748 KB
testcase_20 AC 71 ms
16,368 KB
testcase_21 AC 72 ms
16,492 KB
testcase_22 AC 70 ms
16,624 KB
testcase_23 AC 118 ms
17,288 KB
testcase_24 AC 71 ms
16,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=input().split()
a=[]
j,num=1,0
for i in range(n-1):
    if l[i]==l[i+1]:
        j+=1
    else:
        a.append(j)
        j=1
        num+=1
a.append(j)
num+=1
s=a[0]
m=0
for i in range(num-1):
    x,y=a[i],a[i+1]
    if x==1:
        if m==1:
            s+=y
            m=0
        elif y==1:
            m=1
        else:
            s+=y-1
    elif y==1:
        m=1
    else:
        s+=y-1
print(s)
0