結果

問題 No.2053 12345...
ユーザー pluto77pluto77
提出日時 2023-01-22 15:43:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-06-24 20:29:37
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 70 ms
15,652 KB
testcase_04 AC 178 ms
25,500 KB
testcase_05 AC 62 ms
13,960 KB
testcase_06 AC 164 ms
23,824 KB
testcase_07 AC 120 ms
19,796 KB
testcase_08 AC 116 ms
19,184 KB
testcase_09 AC 184 ms
25,572 KB
testcase_10 AC 244 ms
31,452 KB
testcase_11 AC 59 ms
13,644 KB
testcase_12 AC 43 ms
12,288 KB
testcase_13 AC 215 ms
30,384 KB
testcase_14 AC 89 ms
16,524 KB
testcase_15 AC 79 ms
15,968 KB
testcase_16 AC 77 ms
15,488 KB
testcase_17 AC 61 ms
14,020 KB
testcase_18 AC 235 ms
32,264 KB
testcase_19 AC 181 ms
26,240 KB
testcase_20 AC 41 ms
12,032 KB
testcase_21 AC 115 ms
19,852 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 48 ms
13,056 KB
testcase_24 AC 75 ms
16,192 KB
testcase_25 AC 188 ms
29,980 KB
testcase_26 AC 106 ms
19,976 KB
testcase_27 AC 74 ms
16,204 KB
testcase_28 AC 64 ms
14,888 KB
testcase_29 AC 135 ms
23,396 KB
testcase_30 AC 66 ms
15,476 KB
testcase_31 AC 127 ms
22,740 KB
testcase_32 AC 214 ms
32,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
res=0
x=0
for i in range(N):
 while x<N and A[x]==A[i]+(x-i):
  x+=1
 res+=x-i-1
print(res)
0