結果

問題 No.1438 Broken Drawers
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-26 21:25:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 129,508 KB
最終ジャッジ日時 2024-11-28 21:25:01
合計ジャッジ時間 11,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,440 KB
testcase_01 AC 39 ms
52,080 KB
testcase_02 AC 39 ms
52,776 KB
testcase_03 AC 39 ms
53,520 KB
testcase_04 AC 39 ms
52,960 KB
testcase_05 AC 39 ms
53,100 KB
testcase_06 AC 161 ms
129,508 KB
testcase_07 AC 143 ms
111,688 KB
testcase_08 AC 39 ms
53,936 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 39 ms
53,496 KB
testcase_11 AC 69 ms
75,988 KB
testcase_12 AC 245 ms
92,256 KB
testcase_13 AC 388 ms
104,428 KB
testcase_14 AC 176 ms
85,968 KB
testcase_15 AC 593 ms
112,116 KB
testcase_16 AC 578 ms
113,376 KB
testcase_17 AC 616 ms
114,428 KB
testcase_18 AC 619 ms
113,644 KB
testcase_19 AC 632 ms
113,500 KB
testcase_20 AC 635 ms
113,472 KB
testcase_21 AC 627 ms
114,356 KB
testcase_22 AC 636 ms
112,728 KB
testcase_23 AC 654 ms
112,832 KB
testcase_24 AC 649 ms
112,324 KB
testcase_25 AC 655 ms
112,332 KB
testcase_26 AC 655 ms
112,176 KB
testcase_27 AC 658 ms
112,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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