結果

問題 No.1438 Broken Drawers
ユーザー pluto77pluto77
提出日時 2021-07-17 09:38:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,300 KB
最終ジャッジ日時 2024-07-06 21:10:08
合計ジャッジ時間 4,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 23 ms
10,624 KB
testcase_05 AC 23 ms
10,624 KB
testcase_06 AC 140 ms
29,528 KB
testcase_07 AC 135 ms
29,652 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 30 ms
11,648 KB
testcase_12 AC 65 ms
18,240 KB
testcase_13 AC 91 ms
22,708 KB
testcase_14 AC 52 ms
15,824 KB
testcase_15 AC 128 ms
29,188 KB
testcase_16 AC 123 ms
29,728 KB
testcase_17 AC 130 ms
29,664 KB
testcase_18 AC 134 ms
29,864 KB
testcase_19 AC 145 ms
29,956 KB
testcase_20 AC 138 ms
30,300 KB
testcase_21 AC 132 ms
29,780 KB
testcase_22 AC 137 ms
30,240 KB
testcase_23 AC 140 ms
29,528 KB
testcase_24 AC 132 ms
29,652 KB
testcase_25 AC 138 ms
29,524 KB
testcase_26 AC 136 ms
29,656 KB
testcase_27 AC 134 ms
29,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1438
n=int(input())
a=list(map(int,input().split()))
res=n
cnt=1
for i in range(n-1):
 if a[i]>a[i+1]:
  cnt+=1
 else:
  res-=cnt//2
  cnt=1
res-=cnt//2
print(res)
0