結果

問題 No.1438 Broken Drawers
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-10 09:05:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 110,868 KB
最終ジャッジ日時 2024-05-07 02:06:08
合計ジャッジ時間 8,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 155 ms
109,500 KB
testcase_07 AC 147 ms
109,624 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 58 ms
64,256 KB
testcase_12 AC 173 ms
98,692 KB
testcase_13 AC 231 ms
104,192 KB
testcase_14 AC 110 ms
82,688 KB
testcase_15 AC 326 ms
105,856 KB
testcase_16 AC 322 ms
106,752 KB
testcase_17 AC 342 ms
109,184 KB
testcase_18 AC 346 ms
108,416 KB
testcase_19 AC 361 ms
108,288 KB
testcase_20 AC 411 ms
110,060 KB
testcase_21 AC 342 ms
108,916 KB
testcase_22 AC 400 ms
110,840 KB
testcase_23 AC 410 ms
110,492 KB
testcase_24 AC 409 ms
110,588 KB
testcase_25 AC 404 ms
110,784 KB
testcase_26 AC 408 ms
110,508 KB
testcase_27 AC 409 ms
110,868 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