結果

問題 No.2053 12345...
ユーザー Akijin_007Akijin_007
提出日時 2022-10-17 17:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,448 KB
最終ジャッジ日時 2024-06-28 07:56:46
合計ジャッジ時間 4,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,564 KB
testcase_02 AC 46 ms
59,520 KB
testcase_03 AC 53 ms
68,864 KB
testcase_04 AC 75 ms
93,184 KB
testcase_05 AC 53 ms
66,304 KB
testcase_06 AC 69 ms
89,728 KB
testcase_07 AC 62 ms
80,128 KB
testcase_08 AC 61 ms
78,592 KB
testcase_09 AC 73 ms
92,800 KB
testcase_10 AC 87 ms
104,448 KB
testcase_11 AC 48 ms
65,600 KB
testcase_12 AC 45 ms
62,592 KB
testcase_13 AC 84 ms
102,656 KB
testcase_14 AC 56 ms
72,320 KB
testcase_15 AC 55 ms
71,168 KB
testcase_16 AC 55 ms
71,052 KB
testcase_17 AC 51 ms
66,560 KB
testcase_18 AC 99 ms
101,512 KB
testcase_19 AC 75 ms
94,080 KB
testcase_20 AC 46 ms
62,336 KB
testcase_21 AC 63 ms
80,384 KB
testcase_22 AC 43 ms
58,880 KB
testcase_23 AC 46 ms
63,860 KB
testcase_24 AC 53 ms
70,528 KB
testcase_25 AC 81 ms
102,656 KB
testcase_26 AC 60 ms
79,528 KB
testcase_27 AC 52 ms
70,348 KB
testcase_28 AC 50 ms
68,164 KB
testcase_29 AC 66 ms
86,400 KB
testcase_30 AC 50 ms
69,596 KB
testcase_31 AC 67 ms
85,504 KB
testcase_32 AC 98 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

ans = 0
b = 1
for i in range(N-1):
    if A[i] + 1 == A[i+1]:
        b += 1
    else:
        ans += b * (b - 1) // 2
        b = 1

ans += b * (b - 1) // 2

print(ans)
0