結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
51,328 KB
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 85 ms
101,760 KB
testcase_07 AC 83 ms
101,504 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 38 ms
51,456 KB
testcase_11 AC 48 ms
62,080 KB
testcase_12 AC 62 ms
76,416 KB
testcase_13 AC 76 ms
88,448 KB
testcase_14 AC 61 ms
73,344 KB
testcase_15 AC 87 ms
98,944 KB
testcase_16 AC 87 ms
99,968 KB
testcase_17 AC 97 ms
105,856 KB
testcase_18 AC 91 ms
102,884 KB
testcase_19 AC 93 ms
104,448 KB
testcase_20 AC 94 ms
103,936 KB
testcase_21 AC 97 ms
105,344 KB
testcase_22 AC 90 ms
103,552 KB
testcase_23 AC 92 ms
104,832 KB
testcase_24 AC 92 ms
103,680 KB
testcase_25 AC 91 ms
103,168 KB
testcase_26 AC 99 ms
106,344 KB
testcase_27 AC 93 ms
104,192 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