結果

問題 No.2053 12345...
ユーザー shinichishinichi
提出日時 2022-08-27 00:47:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-10-14 01:24:09
合計ジャッジ時間 3,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 45 ms
58,752 KB
testcase_03 AC 58 ms
68,992 KB
testcase_04 AC 77 ms
92,928 KB
testcase_05 AC 50 ms
66,048 KB
testcase_06 AC 73 ms
88,960 KB
testcase_07 AC 65 ms
79,872 KB
testcase_08 AC 62 ms
78,336 KB
testcase_09 AC 78 ms
92,800 KB
testcase_10 AC 93 ms
104,064 KB
testcase_11 AC 49 ms
65,408 KB
testcase_12 AC 52 ms
64,768 KB
testcase_13 AC 96 ms
103,680 KB
testcase_14 AC 61 ms
74,624 KB
testcase_15 AC 61 ms
72,960 KB
testcase_16 AC 62 ms
74,240 KB
testcase_17 AC 59 ms
69,376 KB
testcase_18 AC 106 ms
101,504 KB
testcase_19 AC 80 ms
94,080 KB
testcase_20 AC 54 ms
64,768 KB
testcase_21 AC 71 ms
82,816 KB
testcase_22 AC 42 ms
58,752 KB
testcase_23 AC 47 ms
63,488 KB
testcase_24 AC 53 ms
70,656 KB
testcase_25 AC 89 ms
101,888 KB
testcase_26 AC 67 ms
79,232 KB
testcase_27 AC 60 ms
70,016 KB
testcase_28 AC 54 ms
67,840 KB
testcase_29 AC 69 ms
86,144 KB
testcase_30 AC 54 ms
69,376 KB
testcase_31 AC 70 ms
85,504 KB
testcase_32 AC 100 ms
101,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ans)
0