結果

問題 No.1438 Broken Drawers
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-10 09:05:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 111,032 KB
最終ジャッジ日時 2024-11-29 14:15:17
合計ジャッジ時間 8,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 151 ms
109,364 KB
testcase_07 AC 148 ms
109,368 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,208 KB
testcase_11 AC 57 ms
64,300 KB
testcase_12 AC 173 ms
98,544 KB
testcase_13 AC 236 ms
103,908 KB
testcase_14 AC 114 ms
82,920 KB
testcase_15 AC 334 ms
106,316 KB
testcase_16 AC 330 ms
106,880 KB
testcase_17 AC 346 ms
108,800 KB
testcase_18 AC 353 ms
108,672 KB
testcase_19 AC 360 ms
108,168 KB
testcase_20 AC 403 ms
109,844 KB
testcase_21 AC 354 ms
108,484 KB
testcase_22 AC 408 ms
110,708 KB
testcase_23 AC 416 ms
110,712 KB
testcase_24 AC 421 ms
110,520 KB
testcase_25 AC 420 ms
111,032 KB
testcase_26 AC 422 ms
110,872 KB
testcase_27 AC 424 ms
110,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bl,bisect_right as br
n=int(input())
a=list(map(int,input().split()))
a=[[x,i] for i,x in enumerate(a)]
a.sort(key=lambda x:x[0])
ans=0
ary=[0]*n
for x,i in a:
  if i==n-1:
    ans+=1
    ary[i]=1
  else:
    if ary[i+1]==0:
      ans+=1
      ary[i]=1
print(ans)
0