結果

問題 No.2053 12345...
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-08 16:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-11-24 11:01:04
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,456 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 43 ms
59,648 KB
testcase_03 AC 60 ms
69,504 KB
testcase_04 AC 66 ms
93,440 KB
testcase_05 AC 42 ms
66,432 KB
testcase_06 AC 65 ms
90,112 KB
testcase_07 AC 64 ms
80,640 KB
testcase_08 AC 59 ms
78,336 KB
testcase_09 AC 70 ms
94,080 KB
testcase_10 AC 86 ms
106,368 KB
testcase_11 AC 45 ms
65,408 KB
testcase_12 AC 43 ms
62,976 KB
testcase_13 AC 99 ms
104,332 KB
testcase_14 AC 52 ms
73,472 KB
testcase_15 AC 51 ms
71,296 KB
testcase_16 AC 53 ms
71,680 KB
testcase_17 AC 48 ms
67,584 KB
testcase_18 AC 96 ms
101,788 KB
testcase_19 AC 72 ms
94,720 KB
testcase_20 AC 42 ms
62,080 KB
testcase_21 AC 61 ms
80,768 KB
testcase_22 AC 38 ms
59,264 KB
testcase_23 AC 43 ms
64,000 KB
testcase_24 AC 50 ms
71,808 KB
testcase_25 AC 76 ms
103,680 KB
testcase_26 AC 57 ms
80,512 KB
testcase_27 AC 48 ms
71,552 KB
testcase_28 AC 46 ms
68,864 KB
testcase_29 AC 63 ms
87,296 KB
testcase_30 AC 49 ms
70,272 KB
testcase_31 AC 63 ms
86,656 KB
testcase_32 AC 91 ms
101,760 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