結果

問題 No.2053 12345...
ユーザー dangodango
提出日時 2023-06-14 19:25:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 104,320 KB
最終ジャッジ日時 2024-06-23 02:34:28
合計ジャッジ時間 4,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 39 ms
59,264 KB
testcase_03 AC 46 ms
68,864 KB
testcase_04 AC 67 ms
92,032 KB
testcase_05 AC 42 ms
65,152 KB
testcase_06 AC 62 ms
88,832 KB
testcase_07 AC 53 ms
79,360 KB
testcase_08 AC 54 ms
77,824 KB
testcase_09 AC 64 ms
92,160 KB
testcase_10 AC 78 ms
102,656 KB
testcase_11 AC 43 ms
65,280 KB
testcase_12 AC 46 ms
65,152 KB
testcase_13 AC 82 ms
104,320 KB
testcase_14 AC 53 ms
74,624 KB
testcase_15 AC 51 ms
73,344 KB
testcase_16 AC 51 ms
73,728 KB
testcase_17 AC 50 ms
70,016 KB
testcase_18 AC 90 ms
101,680 KB
testcase_19 AC 68 ms
94,592 KB
testcase_20 AC 41 ms
63,744 KB
testcase_21 AC 59 ms
83,200 KB
testcase_22 AC 36 ms
58,368 KB
testcase_23 AC 39 ms
63,488 KB
testcase_24 AC 47 ms
70,144 KB
testcase_25 AC 74 ms
101,768 KB
testcase_26 AC 54 ms
79,488 KB
testcase_27 AC 47 ms
70,528 KB
testcase_28 AC 44 ms
67,968 KB
testcase_29 AC 58 ms
86,400 KB
testcase_30 AC 45 ms
69,120 KB
testcase_31 AC 58 ms
86,016 KB
testcase_32 AC 89 ms
102,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def C(n, A):
    count = 0
    i = 0
    while i < n:
        j = i + 1
        while j < n and A[j] - A[j - 1] == 1:
            j += 1
        length = j - i
        if length >= 2:
            count += (length - 1) * length // 2
        i = j
    return count
N = int(input())
A = list(map(int, input().split()))
print(C(N, A))
0