結果

問題 No.1438 Broken Drawers
ユーザー KudeKude
提出日時 2021-03-26 21:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,148 KB
最終ジャッジ日時 2024-05-06 14:18:00
合計ジャッジ時間 3,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 82 ms
102,016 KB
testcase_07 AC 83 ms
101,896 KB
testcase_08 AC 38 ms
52,204 KB
testcase_09 AC 39 ms
52,732 KB
testcase_10 AC 38 ms
52,872 KB
testcase_11 AC 46 ms
63,168 KB
testcase_12 AC 61 ms
76,460 KB
testcase_13 AC 72 ms
88,704 KB
testcase_14 AC 60 ms
73,380 KB
testcase_15 AC 85 ms
99,072 KB
testcase_16 AC 87 ms
99,896 KB
testcase_17 AC 98 ms
105,716 KB
testcase_18 AC 89 ms
102,836 KB
testcase_19 AC 92 ms
104,524 KB
testcase_20 AC 95 ms
104,328 KB
testcase_21 AC 96 ms
105,780 KB
testcase_22 AC 88 ms
103,576 KB
testcase_23 AC 93 ms
104,796 KB
testcase_24 AC 94 ms
103,376 KB
testcase_25 AC 94 ms
103,364 KB
testcase_26 AC 98 ms
106,148 KB
testcase_27 AC 93 ms
104,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
i = 0
ans = 0
while i < n:
    j = i + 1
    while j < n and a[j-1] > a[j]:
        j += 1
    ans += (j - i + 1) // 2
    i = j
print(ans)
0