結果

問題 No.1438 Broken Drawers
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-26 23:26:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,692 KB
最終ジャッジ日時 2024-05-06 17:28:32
合計ジャッジ時間 8,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 224 ms
56,692 KB
testcase_07 AC 195 ms
47,872 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 41 ms
12,672 KB
testcase_12 AC 144 ms
25,636 KB
testcase_13 AC 225 ms
32,476 KB
testcase_14 AC 99 ms
21,040 KB
testcase_15 AC 384 ms
45,876 KB
testcase_16 AC 380 ms
45,652 KB
testcase_17 AC 436 ms
46,444 KB
testcase_18 AC 475 ms
47,144 KB
testcase_19 AC 459 ms
47,408 KB
testcase_20 AC 440 ms
47,316 KB
testcase_21 AC 423 ms
46,876 KB
testcase_22 AC 434 ms
47,560 KB
testcase_23 AC 419 ms
48,316 KB
testcase_24 AC 426 ms
48,112 KB
testcase_25 AC 430 ms
48,012 KB
testcase_26 AC 409 ms
48,256 KB
testcase_27 AC 417 ms
48,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a2 = [(a[i], i) for i in range(n)]
a2.sort()
ans = 0
forbidden = set()
for i in range(n):
    if a2[i][1] not in forbidden:
        ans += 1
        forbidden.add(a2[i][1] - 1)
print(ans)
0