結果

問題 No.2053 12345...
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-21 13:31:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-10-10 06:05:32
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 48 ms
59,344 KB
testcase_03 AC 58 ms
70,076 KB
testcase_04 AC 86 ms
95,616 KB
testcase_05 AC 56 ms
67,712 KB
testcase_06 AC 81 ms
91,520 KB
testcase_07 AC 71 ms
82,304 KB
testcase_08 AC 72 ms
79,744 KB
testcase_09 AC 86 ms
96,000 KB
testcase_10 AC 102 ms
107,520 KB
testcase_11 AC 54 ms
66,944 KB
testcase_12 AC 51 ms
63,744 KB
testcase_13 AC 96 ms
105,268 KB
testcase_14 AC 63 ms
73,472 KB
testcase_15 AC 63 ms
72,320 KB
testcase_16 AC 62 ms
72,520 KB
testcase_17 AC 56 ms
67,420 KB
testcase_18 AC 114 ms
101,768 KB
testcase_19 AC 86 ms
96,220 KB
testcase_20 AC 51 ms
63,104 KB
testcase_21 AC 73 ms
82,176 KB
testcase_22 AC 47 ms
59,216 KB
testcase_23 AC 53 ms
64,256 KB
testcase_24 AC 60 ms
71,424 KB
testcase_25 AC 97 ms
104,840 KB
testcase_26 AC 70 ms
81,280 KB
testcase_27 AC 59 ms
71,680 KB
testcase_28 AC 57 ms
68,608 KB
testcase_29 AC 77 ms
88,960 KB
testcase_30 AC 58 ms
70,144 KB
testcase_31 AC 80 ms
88,192 KB
testcase_32 AC 112 ms
102,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split())) + [10**10]
ans = 0
last = -1
count = 0
for i,a in enumerate(A):
    if last == -1:
        last = a
        count += 1
        
    else:
        if a == last+1:
            count += 1
        else:
            ans += count*(count-1)//2
            count = 1
    last = a
print(ans)
0