結果

問題 No.1438 Broken Drawers
ユーザー NoaSaberNoaSaber
提出日時 2021-04-01 10:12:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 104,344 KB
最終ジャッジ日時 2024-12-17 14:03:49
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,812 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 37 ms
51,980 KB
testcase_03 AC 36 ms
52,828 KB
testcase_04 AC 36 ms
53,208 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 78 ms
102,444 KB
testcase_07 AC 77 ms
102,008 KB
testcase_08 AC 36 ms
52,924 KB
testcase_09 AC 37 ms
52,348 KB
testcase_10 AC 36 ms
53,028 KB
testcase_11 AC 42 ms
62,044 KB
testcase_12 AC 55 ms
76,184 KB
testcase_13 AC 65 ms
85,656 KB
testcase_14 AC 52 ms
72,128 KB
testcase_15 AC 78 ms
99,304 KB
testcase_16 AC 77 ms
98,332 KB
testcase_17 AC 79 ms
102,696 KB
testcase_18 AC 82 ms
101,780 KB
testcase_19 AC 81 ms
102,848 KB
testcase_20 AC 80 ms
103,480 KB
testcase_21 AC 82 ms
102,476 KB
testcase_22 AC 84 ms
102,828 KB
testcase_23 AC 82 ms
103,840 KB
testcase_24 AC 80 ms
103,152 KB
testcase_25 AC 83 ms
103,720 KB
testcase_26 AC 81 ms
103,720 KB
testcase_27 AC 80 ms
104,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=N
l=list(map(int,input().split()))
cnt=1
for i in range(N-1):
    if l[i]>l[i+1]:
        cnt+=1
    else:
        ans-=cnt//2
        cnt=1
ans-=cnt//2
print(ans)
0