結果

問題 No.1438 Broken Drawers
ユーザー 👑 rin204rin204
提出日時 2022-01-18 05:27:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,648 KB
最終ジャッジ日時 2024-05-02 19:17:47
合計ジャッジ時間 11,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 155 ms
115,648 KB
testcase_07 AC 147 ms
112,128 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 77 ms
75,776 KB
testcase_12 AC 244 ms
91,520 KB
testcase_13 AC 376 ms
103,808 KB
testcase_14 AC 181 ms
85,760 KB
testcase_15 AC 575 ms
111,872 KB
testcase_16 AC 571 ms
112,896 KB
testcase_17 AC 591 ms
115,200 KB
testcase_18 AC 606 ms
113,536 KB
testcase_19 AC 588 ms
112,896 KB
testcase_20 AC 608 ms
112,768 KB
testcase_21 AC 599 ms
113,792 KB
testcase_22 AC 594 ms
113,024 KB
testcase_23 AC 617 ms
112,128 KB
testcase_24 AC 637 ms
112,128 KB
testcase_25 AC 630 ms
112,128 KB
testcase_26 AC 615 ms
112,256 KB
testcase_27 AC 613 ms
112,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A = [(a, i) for i, a in enumerate(A)]
A.sort()
used = set()
ans = 0
for _, i in A:
    if i + 1 not in used:
        ans += 1
        used.add(i)
print(ans)
0