結果

問題 No.1438 Broken Drawers
ユーザー H3PO4H3PO4
提出日時 2021-03-26 21:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,808 KB
最終ジャッジ日時 2024-11-28 21:30:29
合計ジャッジ時間 10,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 239 ms
48,356 KB
testcase_07 AC 227 ms
48,356 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 46 ms
12,544 KB
testcase_12 AC 209 ms
25,292 KB
testcase_13 AC 329 ms
33,912 KB
testcase_14 AC 137 ms
20,696 KB
testcase_15 AC 526 ms
46,352 KB
testcase_16 AC 508 ms
46,632 KB
testcase_17 AC 523 ms
47,212 KB
testcase_18 AC 555 ms
47,792 KB
testcase_19 AC 551 ms
48,140 KB
testcase_20 AC 565 ms
48,484 KB
testcase_21 AC 548 ms
47,580 KB
testcase_22 AC 578 ms
48,808 KB
testcase_23 AC 571 ms
48,360 KB
testcase_24 AC 578 ms
48,224 KB
testcase_25 AC 582 ms
48,228 KB
testcase_26 AC 575 ms
48,352 KB
testcase_27 AC 571 ms
48,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = map(int, input().split())
As = [(s, i) for i, s in enumerate(A)]
As.sort()
op = [False] * N
ans = 0
for _, i in As:
    if i + 1 < N and op[i + 1]:
        continue
    op[i] = True
    ans += 1
print(ans)
0