結果

問題 No.711 競技レーティング単調増加
ユーザー 👑 rin204rin204
提出日時 2024-03-20 23:41:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 106,700 KB
最終ジャッジ日時 2024-03-20 23:41:10
合計ジャッジ時間 6,646 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,332 KB
testcase_01 AC 39 ms
53,332 KB
testcase_02 AC 37 ms
53,332 KB
testcase_03 WA -
testcase_04 AC 37 ms
53,332 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,332 KB
testcase_07 WA -
testcase_08 AC 38 ms
53,332 KB
testcase_09 AC 38 ms
53,332 KB
testcase_10 AC 38 ms
53,332 KB
testcase_11 AC 39 ms
53,332 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 98 ms
103,260 KB
testcase_37 AC 115 ms
101,468 KB
testcase_38 AC 100 ms
102,508 KB
testcase_39 AC 77 ms
89,088 KB
testcase_40 AC 99 ms
93,316 KB
testcase_41 AC 36 ms
53,332 KB
testcase_42 AC 85 ms
89,096 KB
testcase_43 AC 97 ms
96,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n = int(input())
A = list(map(int, input().split()))
B = []
for a in A:
    p = bisect_left(B, a)
    if p == len(B):
        B.append(a)
    else:
        B[p] = a
print(n - len(B))
0