結果

問題 No.2053 12345...
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 17:04:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 108,660 KB
最終ジャッジ日時 2024-09-09 17:04:42
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,824 KB
testcase_01 AC 35 ms
52,548 KB
testcase_02 AC 40 ms
60,924 KB
testcase_03 AC 48 ms
71,096 KB
testcase_04 AC 73 ms
95,304 KB
testcase_05 AC 51 ms
68,628 KB
testcase_06 AC 73 ms
91,652 KB
testcase_07 AC 60 ms
82,504 KB
testcase_08 AC 59 ms
80,304 KB
testcase_09 AC 72 ms
95,996 KB
testcase_10 AC 85 ms
105,780 KB
testcase_11 AC 45 ms
66,928 KB
testcase_12 AC 47 ms
68,648 KB
testcase_13 AC 97 ms
105,976 KB
testcase_14 AC 60 ms
84,424 KB
testcase_15 AC 57 ms
78,788 KB
testcase_16 AC 58 ms
80,164 KB
testcase_17 AC 53 ms
75,292 KB
testcase_18 AC 112 ms
108,660 KB
testcase_19 AC 81 ms
99,892 KB
testcase_20 AC 47 ms
67,120 KB
testcase_21 AC 82 ms
96,020 KB
testcase_22 AC 41 ms
60,648 KB
testcase_23 AC 45 ms
64,628 KB
testcase_24 AC 51 ms
72,800 KB
testcase_25 AC 79 ms
104,360 KB
testcase_26 AC 58 ms
81,656 KB
testcase_27 AC 49 ms
72,244 KB
testcase_28 AC 48 ms
68,872 KB
testcase_29 AC 65 ms
88,612 KB
testcase_30 AC 50 ms
70,968 KB
testcase_31 AC 63 ms
88,444 KB
testcase_32 AC 94 ms
101,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=[a[i+1]-a[i] for i in range(n-1)]
q=[]
for v in b:
	if len(q)==0 or q[-1][0]!=v:
		q+=[[v,0]]
	q[-1][1]+=1
g=0
for v,c in q:
	if v==1:
		g+=(c+1)*c//2
print(g)
0