結果

問題 No.1438 Broken Drawers
ユーザー H20H20
提出日時 2021-03-26 23:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 118,528 KB
最終ジャッジ日時 2024-11-29 01:03:40
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 101 ms
107,520 KB
testcase_07 AC 102 ms
118,528 KB
testcase_08 AC 40 ms
51,584 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 57 ms
64,768 KB
testcase_12 AC 82 ms
86,272 KB
testcase_13 AC 95 ms
94,464 KB
testcase_14 AC 76 ms
82,304 KB
testcase_15 AC 112 ms
104,064 KB
testcase_16 AC 111 ms
103,936 KB
testcase_17 AC 116 ms
107,648 KB
testcase_18 AC 117 ms
107,520 KB
testcase_19 AC 121 ms
107,392 KB
testcase_20 AC 118 ms
107,648 KB
testcase_21 AC 116 ms
107,520 KB
testcase_22 AC 120 ms
107,520 KB
testcase_23 AC 119 ms
107,904 KB
testcase_24 AC 118 ms
107,648 KB
testcase_25 AC 119 ms
108,032 KB
testcase_26 AC 120 ms
108,288 KB
testcase_27 AC 118 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int, input().split())) 
L = [0]*N
ans = 1
for i in range(1,N):
    if A[i-1]<A[i]:
        ans+=1
    else:
        L[i]=1
gr = itertools.groupby(L)
for key, group in gr:
    if key == 1:
        ans += len(list(group))//2
print(ans)
0