結果

問題 No.2053 12345...
ユーザー ntudantuda
提出日時 2022-10-06 21:06:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-06-11 08:09:18
合計ジャッジ時間 4,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 51 ms
15,456 KB
testcase_04 AC 117 ms
25,628 KB
testcase_05 AC 48 ms
13,700 KB
testcase_06 AC 113 ms
23,824 KB
testcase_07 AC 75 ms
19,792 KB
testcase_08 AC 73 ms
19,184 KB
testcase_09 AC 108 ms
25,436 KB
testcase_10 AC 135 ms
31,196 KB
testcase_11 AC 43 ms
13,520 KB
testcase_12 AC 37 ms
12,288 KB
testcase_13 AC 142 ms
30,260 KB
testcase_14 AC 66 ms
16,648 KB
testcase_15 AC 57 ms
15,840 KB
testcase_16 AC 58 ms
15,620 KB
testcase_17 AC 47 ms
13,980 KB
testcase_18 AC 152 ms
32,132 KB
testcase_19 AC 118 ms
26,244 KB
testcase_20 AC 35 ms
12,032 KB
testcase_21 AC 83 ms
19,724 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 39 ms
12,840 KB
testcase_24 AC 66 ms
16,204 KB
testcase_25 AC 134 ms
29,984 KB
testcase_26 AC 78 ms
19,848 KB
testcase_27 AC 57 ms
16,080 KB
testcase_28 AC 51 ms
14,892 KB
testcase_29 AC 96 ms
23,276 KB
testcase_30 AC 53 ms
15,480 KB
testcase_31 AC 89 ms
22,748 KB
testcase_32 AC 146 ms
32,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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