結果

問題 No.2053 12345...
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-24 22:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 104,728 KB
最終ジャッジ日時 2024-10-12 06:38:19
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,768 KB
testcase_01 AC 35 ms
52,792 KB
testcase_02 AC 42 ms
61,808 KB
testcase_03 AC 49 ms
69,908 KB
testcase_04 AC 77 ms
95,356 KB
testcase_05 AC 50 ms
69,328 KB
testcase_06 AC 70 ms
91,372 KB
testcase_07 AC 63 ms
82,176 KB
testcase_08 AC 60 ms
80,052 KB
testcase_09 AC 75 ms
96,492 KB
testcase_10 AC 89 ms
104,728 KB
testcase_11 AC 46 ms
67,900 KB
testcase_12 AC 46 ms
65,484 KB
testcase_13 AC 87 ms
104,396 KB
testcase_14 AC 57 ms
75,112 KB
testcase_15 AC 53 ms
72,584 KB
testcase_16 AC 52 ms
73,228 KB
testcase_17 AC 52 ms
69,700 KB
testcase_18 AC 96 ms
101,820 KB
testcase_19 AC 75 ms
94,968 KB
testcase_20 AC 43 ms
64,540 KB
testcase_21 AC 61 ms
82,248 KB
testcase_22 AC 39 ms
60,080 KB
testcase_23 AC 44 ms
64,672 KB
testcase_24 AC 50 ms
71,876 KB
testcase_25 AC 78 ms
103,312 KB
testcase_26 AC 59 ms
80,736 KB
testcase_27 AC 52 ms
71,980 KB
testcase_28 AC 49 ms
68,864 KB
testcase_29 AC 63 ms
87,876 KB
testcase_30 AC 49 ms
70,604 KB
testcase_31 AC 64 ms
86,684 KB
testcase_32 AC 92 ms
102,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans=0
r=0
for i in range(N):
    while r<N and A[r]==A[i]+(r-i):
        r+=1
    ans+=r-i-1
print(ans)
0