結果

問題 No.2053 12345...
ユーザー lloyzlloyz
提出日時 2022-08-21 15:47:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-10-10 06:13:38
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 55 ms
15,460 KB
testcase_04 AC 114 ms
25,372 KB
testcase_05 AC 47 ms
13,832 KB
testcase_06 AC 101 ms
23,700 KB
testcase_07 AC 83 ms
19,804 KB
testcase_08 AC 73 ms
19,060 KB
testcase_09 AC 109 ms
25,440 KB
testcase_10 AC 136 ms
31,080 KB
testcase_11 AC 45 ms
13,520 KB
testcase_12 AC 42 ms
12,160 KB
testcase_13 AC 176 ms
30,264 KB
testcase_14 AC 81 ms
16,656 KB
testcase_15 AC 64 ms
15,976 KB
testcase_16 AC 67 ms
15,496 KB
testcase_17 AC 59 ms
13,984 KB
testcase_18 AC 183 ms
32,268 KB
testcase_19 AC 123 ms
25,988 KB
testcase_20 AC 38 ms
11,904 KB
testcase_21 AC 102 ms
19,856 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 39 ms
12,844 KB
testcase_24 AC 58 ms
16,212 KB
testcase_25 AC 133 ms
29,984 KB
testcase_26 AC 78 ms
19,724 KB
testcase_27 AC 57 ms
16,080 KB
testcase_28 AC 52 ms
14,636 KB
testcase_29 AC 98 ms
23,280 KB
testcase_30 AC 56 ms
15,232 KB
testcase_31 AC 95 ms
22,492 KB
testcase_32 AC 151 ms
32,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
l, r = 0, 1
while l < n - 1:
    while r < n and A[r] - A[r - 1] == 1:
        r += 1
    m = r - l
    ans += m * (m - 1) // 2
    r += 1
    l = r - 1
print(ans)
0