結果

問題 No.1438 Broken Drawers
ユーザー titiatitia
提出日時 2021-03-26 21:52:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,280 KB
最終ジャッジ日時 2024-05-06 15:19:44
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 224 ms
30,152 KB
testcase_07 AC 193 ms
30,156 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 34 ms
10,624 KB
testcase_11 AC 39 ms
11,648 KB
testcase_12 AC 116 ms
18,124 KB
testcase_13 AC 169 ms
23,284 KB
testcase_14 AC 90 ms
15,676 KB
testcase_15 AC 258 ms
27,920 KB
testcase_16 AC 245 ms
28,124 KB
testcase_17 AC 261 ms
29,000 KB
testcase_18 AC 269 ms
28,592 KB
testcase_19 AC 265 ms
28,812 KB
testcase_20 AC 267 ms
29,768 KB
testcase_21 AC 255 ms
29,212 KB
testcase_22 AC 268 ms
29,228 KB
testcase_23 AC 284 ms
30,148 KB
testcase_24 AC 278 ms
30,280 KB
testcase_25 AC 270 ms
30,152 KB
testcase_26 AC 279 ms
30,276 KB
testcase_27 AC 275 ms
30,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

AINV=[0]*(N+1)
for i in range(N):
    AINV[A[i]]=i

USE=[0]*(N+1)
ANS=0

for i in range(1,N+1):
    if USE[AINV[i]]==1:
        continue
    ANS+=1
    USE[AINV[i]]=1
    USE[AINV[i]-1]=1

print(ANS)
    
0