結果

問題 No.1438 Broken Drawers
ユーザー 小野寺健小野寺健
提出日時 2021-05-14 16:00:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,772 KB
最終ジャッジ日時 2024-10-01 20:34:01
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 155 ms
29,544 KB
testcase_07 AC 135 ms
29,424 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 31 ms
11,776 KB
testcase_12 AC 90 ms
18,568 KB
testcase_13 AC 134 ms
22,728 KB
testcase_14 AC 67 ms
15,704 KB
testcase_15 AC 198 ms
30,108 KB
testcase_16 AC 198 ms
29,428 KB
testcase_17 AC 208 ms
30,592 KB
testcase_18 AC 221 ms
31,012 KB
testcase_19 AC 214 ms
30,980 KB
testcase_20 AC 218 ms
31,160 KB
testcase_21 AC 206 ms
30,664 KB
testcase_22 AC 218 ms
31,416 KB
testcase_23 AC 225 ms
31,756 KB
testcase_24 AC 224 ms
31,772 KB
testcase_25 AC 235 ms
31,616 KB
testcase_26 AC 224 ms
31,752 KB
testcase_27 AC 225 ms
31,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int, input().split()))

B = sorted(list(range(len(A))), key=lambda i : A[i])

cnt = 0
for i in B:
    if A[i] > 0:
        cnt += 1
        if i > 0:
            A[i-1] = 0
print(cnt)
0