結果

問題 No.1438 Broken Drawers
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-26 23:45:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 111,228 KB
最終ジャッジ日時 2024-05-06 17:44:40
合計ジャッジ時間 13,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,212 KB
testcase_01 AC 38 ms
52,812 KB
testcase_02 AC 38 ms
52,504 KB
testcase_03 AC 43 ms
52,880 KB
testcase_04 AC 39 ms
52,620 KB
testcase_05 AC 38 ms
52,956 KB
testcase_06 AC 122 ms
111,228 KB
testcase_07 AC 122 ms
110,892 KB
testcase_08 AC 38 ms
52,664 KB
testcase_09 AC 37 ms
52,984 KB
testcase_10 AC 39 ms
52,456 KB
testcase_11 AC 62 ms
66,640 KB
testcase_12 AC 269 ms
92,664 KB
testcase_13 AC 433 ms
101,952 KB
testcase_14 AC 179 ms
86,584 KB
testcase_15 AC 703 ms
107,856 KB
testcase_16 AC 687 ms
108,000 KB
testcase_17 AC 732 ms
110,896 KB
testcase_18 AC 745 ms
110,968 KB
testcase_19 AC 756 ms
110,856 KB
testcase_20 AC 756 ms
110,748 KB
testcase_21 AC 746 ms
110,964 KB
testcase_22 AC 791 ms
111,048 KB
testcase_23 AC 798 ms
110,668 KB
testcase_24 AC 780 ms
111,088 KB
testcase_25 AC 777 ms
110,908 KB
testcase_26 AC 778 ms
110,796 KB
testcase_27 AC 784 ms
111,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
sA = [[A[i],i] for i in range(n)]
sA.sort()
use = [0]*(n+1)
ans = 0
for a,ind in sA:
    if use[ind+1]:
        continue
    ans += 1
    use[ind] = 1
print(ans)
0