結果

問題 No.1438 Broken Drawers
ユーザー c-yanc-yan
提出日時 2021-03-26 21:52:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,640 KB
最終ジャッジ日時 2024-05-06 15:19:52
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 146 ms
29,640 KB
testcase_07 AC 141 ms
29,516 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 36 ms
11,648 KB
testcase_12 AC 74 ms
17,940 KB
testcase_13 AC 102 ms
22,448 KB
testcase_14 AC 59 ms
15,872 KB
testcase_15 AC 136 ms
28,156 KB
testcase_16 AC 135 ms
28,648 KB
testcase_17 AC 139 ms
28,376 KB
testcase_18 AC 146 ms
28,824 KB
testcase_19 AC 142 ms
28,792 KB
testcase_20 AC 141 ms
29,136 KB
testcase_21 AC 139 ms
28,608 KB
testcase_22 AC 144 ms
29,080 KB
testcase_23 AC 148 ms
29,388 KB
testcase_24 AC 146 ms
29,512 KB
testcase_25 AC 152 ms
29,516 KB
testcase_26 AC 149 ms
29,640 KB
testcase_27 AC 148 ms
29,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *A = map(int, open(0).read().split())

c = 0
i = 0
while i < N - 1:
    if A[i] > A[i + 1]:
        c += 1
        i += 1
    i += 1
print(N - c)
0