結果

問題 No.2053 12345...
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-08 16:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 105,976 KB
最終ジャッジ日時 2024-05-03 11:34:12
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,152 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 41 ms
60,504 KB
testcase_03 AC 49 ms
70,188 KB
testcase_04 AC 74 ms
95,236 KB
testcase_05 AC 46 ms
67,276 KB
testcase_06 AC 66 ms
90,064 KB
testcase_07 AC 58 ms
81,404 KB
testcase_08 AC 56 ms
80,216 KB
testcase_09 AC 68 ms
95,844 KB
testcase_10 AC 85 ms
105,976 KB
testcase_11 AC 46 ms
65,648 KB
testcase_12 AC 41 ms
63,712 KB
testcase_13 AC 81 ms
103,928 KB
testcase_14 AC 51 ms
73,324 KB
testcase_15 AC 50 ms
72,112 KB
testcase_16 AC 52 ms
71,620 KB
testcase_17 AC 45 ms
68,140 KB
testcase_18 AC 96 ms
102,136 KB
testcase_19 AC 71 ms
96,016 KB
testcase_20 AC 43 ms
62,964 KB
testcase_21 AC 59 ms
81,840 KB
testcase_22 AC 39 ms
60,032 KB
testcase_23 AC 44 ms
65,332 KB
testcase_24 AC 50 ms
71,596 KB
testcase_25 AC 81 ms
104,284 KB
testcase_26 AC 57 ms
81,120 KB
testcase_27 AC 52 ms
71,968 KB
testcase_28 AC 51 ms
70,292 KB
testcase_29 AC 64 ms
87,924 KB
testcase_30 AC 48 ms
70,968 KB
testcase_31 AC 66 ms
88,600 KB
testcase_32 AC 97 ms
102,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans=[0]*n
cnt = 1

for i in range(1,n):
    if a[i-1] + 1 == a[i]:
        ans[i] = ans[i-1] + cnt
        cnt += 1
    else:
        ans[i] = ans[i-1]
        cnt = 1

print(ans[-1])
0