結果

問題 No.1438 Broken Drawers
ユーザー titiatitia
提出日時 2021-03-26 21:52:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,152 KB
最終ジャッジ日時 2024-11-28 22:53:19
合計ジャッジ時間 5,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 217 ms
30,028 KB
testcase_07 AC 191 ms
30,028 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 39 ms
11,648 KB
testcase_12 AC 104 ms
17,996 KB
testcase_13 AC 157 ms
23,284 KB
testcase_14 AC 78 ms
15,628 KB
testcase_15 AC 228 ms
27,792 KB
testcase_16 AC 227 ms
27,988 KB
testcase_17 AC 233 ms
29,000 KB
testcase_18 AC 249 ms
28,588 KB
testcase_19 AC 238 ms
28,812 KB
testcase_20 AC 245 ms
29,512 KB
testcase_21 AC 232 ms
29,120 KB
testcase_22 AC 246 ms
28,972 KB
testcase_23 AC 245 ms
30,024 KB
testcase_24 AC 246 ms
30,152 KB
testcase_25 AC 242 ms
30,152 KB
testcase_26 AC 242 ms
29,896 KB
testcase_27 AC 248 ms
30,024 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