結果

問題 No.2053 12345...
ユーザー H3PO4H3PO4
提出日時 2022-08-21 12:56:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,548 KB
最終ジャッジ日時 2024-10-10 05:56:29
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 56 ms
15,472 KB
testcase_04 AC 116 ms
25,512 KB
testcase_05 AC 47 ms
13,972 KB
testcase_06 AC 104 ms
23,812 KB
testcase_07 AC 83 ms
19,684 KB
testcase_08 AC 79 ms
18,944 KB
testcase_09 AC 117 ms
25,456 KB
testcase_10 AC 147 ms
31,080 KB
testcase_11 AC 46 ms
13,784 KB
testcase_12 AC 39 ms
12,288 KB
testcase_13 AC 151 ms
30,144 KB
testcase_14 AC 72 ms
16,656 KB
testcase_15 AC 61 ms
15,724 KB
testcase_16 AC 62 ms
15,508 KB
testcase_17 AC 53 ms
14,248 KB
testcase_18 AC 169 ms
32,016 KB
testcase_19 AC 123 ms
26,000 KB
testcase_20 AC 37 ms
12,032 KB
testcase_21 AC 89 ms
19,864 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 42 ms
12,852 KB
testcase_24 AC 61 ms
16,092 KB
testcase_25 AC 145 ms
30,000 KB
testcase_26 AC 82 ms
19,736 KB
testcase_27 AC 61 ms
16,088 KB
testcase_28 AC 55 ms
14,900 KB
testcase_29 AC 106 ms
23,152 KB
testcase_30 AC 59 ms
15,492 KB
testcase_31 AC 101 ms
22,836 KB
testcase_32 AC 161 ms
32,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10 ** 9 + 7
A = [INF] + A + [INF]

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