結果

問題 No.2053 12345...
ユーザー 👑 KazunKazun
提出日時 2022-08-25 19:31:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 81,544 KB
実行使用メモリ 108,736 KB
最終ジャッジ日時 2024-10-13 01:16:31
合計ジャッジ時間 5,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,868 KB
testcase_01 AC 36 ms
52,300 KB
testcase_02 AC 41 ms
59,352 KB
testcase_03 AC 51 ms
71,220 KB
testcase_04 AC 72 ms
95,556 KB
testcase_05 AC 47 ms
66,764 KB
testcase_06 AC 68 ms
90,976 KB
testcase_07 AC 59 ms
81,172 KB
testcase_08 AC 58 ms
79,448 KB
testcase_09 AC 70 ms
94,864 KB
testcase_10 AC 84 ms
105,832 KB
testcase_11 AC 44 ms
65,956 KB
testcase_12 AC 47 ms
67,856 KB
testcase_13 AC 98 ms
105,480 KB
testcase_14 AC 60 ms
83,620 KB
testcase_15 AC 59 ms
77,208 KB
testcase_16 AC 59 ms
79,568 KB
testcase_17 AC 55 ms
74,216 KB
testcase_18 AC 111 ms
108,736 KB
testcase_19 AC 85 ms
99,900 KB
testcase_20 AC 48 ms
65,936 KB
testcase_21 AC 81 ms
98,488 KB
testcase_22 AC 41 ms
60,840 KB
testcase_23 AC 45 ms
63,792 KB
testcase_24 AC 50 ms
71,080 KB
testcase_25 AC 82 ms
103,840 KB
testcase_26 AC 60 ms
81,216 KB
testcase_27 AC 52 ms
71,616 KB
testcase_28 AC 51 ms
68,800 KB
testcase_29 AC 68 ms
88,604 KB
testcase_30 AC 51 ms
70,916 KB
testcase_31 AC 68 ms
87,000 KB
testcase_32 AC 99 ms
102,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Run_Length_Encoding(S):
    """ランレングス圧縮

    S: 文字列
    """
    if not S:
        return []

    R=[[S[0],1]]

    for i in range(1,len(S)):
        if R[-1][0]==S[i]:
            R[-1][1]+=1
        else:
            R.append([S[i],1])

    return R

#==================================================
N=int(input())
A=list(map(int,input().split()))
B=[A[i+1]-A[i] for i in range(N-1)]

X=0
for d,k in Run_Length_Encoding(B):
    if d==1:
        X+=k*(k+1)//2

print(X)
0