結果

問題 No.711 競技レーティング単調増加
ユーザー 👑 rin204rin204
提出日時 2024-03-20 23:41:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-09-30 09:38:29
合計ジャッジ時間 6,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 42 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 45 ms
51,968 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 43 ms
51,840 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
51,968 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 43 ms
51,584 KB
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 AC 146 ms
110,336 KB
testcase_31 AC 153 ms
103,168 KB
testcase_32 AC 157 ms
103,808 KB
testcase_33 AC 162 ms
119,552 KB
testcase_34 AC 155 ms
114,688 KB
testcase_35 AC 163 ms
119,808 KB
testcase_36 AC 129 ms
117,120 KB
testcase_37 AC 147 ms
111,868 KB
testcase_38 AC 129 ms
114,432 KB
testcase_39 AC 98 ms
95,104 KB
testcase_40 AC 129 ms
101,376 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 105 ms
95,488 KB
testcase_43 AC 122 ms
105,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

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