結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
51,456 KB
testcase_06 AC 160 ms
129,140 KB
testcase_07 AC 144 ms
111,872 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 73 ms
75,928 KB
testcase_12 AC 241 ms
92,160 KB
testcase_13 AC 362 ms
104,448 KB
testcase_14 AC 179 ms
86,408 KB
testcase_15 AC 546 ms
112,512 KB
testcase_16 AC 525 ms
113,200 KB
testcase_17 AC 562 ms
114,176 KB
testcase_18 AC 562 ms
113,492 KB
testcase_19 AC 583 ms
113,416 KB
testcase_20 AC 590 ms
113,280 KB
testcase_21 AC 571 ms
114,272 KB
testcase_22 AC 574 ms
112,256 KB
testcase_23 AC 587 ms
111,988 KB
testcase_24 AC 660 ms
112,164 KB
testcase_25 AC 663 ms
111,980 KB
testcase_26 AC 649 ms
112,456 KB
testcase_27 AC 600 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