結果

問題 No.1438 Broken Drawers
ユーザー H3PO4H3PO4
提出日時 2021-03-26 21:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 48,684 KB
最終ジャッジ日時 2024-05-06 14:18:24
合計ジャッジ時間 8,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 207 ms
48,232 KB
testcase_07 AC 204 ms
48,224 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 38 ms
12,416 KB
testcase_12 AC 139 ms
25,036 KB
testcase_13 AC 242 ms
33,784 KB
testcase_14 AC 109 ms
20,568 KB
testcase_15 AC 398 ms
46,224 KB
testcase_16 AC 380 ms
46,508 KB
testcase_17 AC 410 ms
47,212 KB
testcase_18 AC 421 ms
47,788 KB
testcase_19 AC 427 ms
48,272 KB
testcase_20 AC 432 ms
48,356 KB
testcase_21 AC 413 ms
47,456 KB
testcase_22 AC 435 ms
48,684 KB
testcase_23 AC 432 ms
48,352 KB
testcase_24 AC 424 ms
48,228 KB
testcase_25 AC 432 ms
48,356 KB
testcase_26 AC 420 ms
48,228 KB
testcase_27 AC 443 ms
48,356 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