結果

問題 No.2053 12345...
ユーザー ytftytft
提出日時 2022-08-23 13:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 104,420 KB
最終ジャッジ日時 2024-10-10 21:21:01
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 38 ms
52,880 KB
testcase_02 AC 42 ms
60,320 KB
testcase_03 AC 55 ms
70,596 KB
testcase_04 AC 77 ms
93,480 KB
testcase_05 AC 51 ms
66,308 KB
testcase_06 AC 71 ms
90,280 KB
testcase_07 AC 63 ms
80,324 KB
testcase_08 AC 60 ms
79,200 KB
testcase_09 AC 75 ms
93,328 KB
testcase_10 AC 92 ms
104,420 KB
testcase_11 AC 48 ms
66,100 KB
testcase_12 AC 45 ms
63,676 KB
testcase_13 AC 86 ms
102,328 KB
testcase_14 AC 57 ms
72,756 KB
testcase_15 AC 54 ms
72,000 KB
testcase_16 AC 55 ms
71,088 KB
testcase_17 AC 50 ms
68,320 KB
testcase_18 AC 100 ms
102,000 KB
testcase_19 AC 76 ms
94,376 KB
testcase_20 AC 45 ms
63,468 KB
testcase_21 AC 65 ms
80,460 KB
testcase_22 AC 43 ms
60,524 KB
testcase_23 AC 48 ms
65,568 KB
testcase_24 AC 53 ms
72,532 KB
testcase_25 AC 83 ms
102,276 KB
testcase_26 AC 64 ms
79,948 KB
testcase_27 AC 54 ms
71,204 KB
testcase_28 AC 50 ms
68,416 KB
testcase_29 AC 68 ms
86,800 KB
testcase_30 AC 52 ms
69,788 KB
testcase_31 AC 67 ms
87,004 KB
testcase_32 AC 99 ms
102,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
temp,ans=0,0
for i in range(N-1):
	if A[i+1]-A[i]==1:
		temp+=1
	else:
		ans+=temp*(temp+1)//2
		temp=0
print(ans+temp*(temp+1)//2)
0