結果

問題 No.711 競技レーティング単調増加
ユーザー convexineqconvexineq
提出日時 2021-03-18 17:47:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 113,768 KB
最終ジャッジ日時 2024-04-28 07:32:38
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,296 KB
testcase_01 AC 35 ms
53,136 KB
testcase_02 AC 36 ms
52,000 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,036 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,128 KB
testcase_07 AC 34 ms
52,184 KB
testcase_08 AC 33 ms
52,008 KB
testcase_09 AC 34 ms
53,628 KB
testcase_10 AC 34 ms
52,532 KB
testcase_11 AC 33 ms
53,068 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 33 ms
53,188 KB
testcase_16 AC 33 ms
52,956 KB
testcase_17 AC 32 ms
52,028 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 111 ms
105,272 KB
testcase_31 AC 127 ms
106,892 KB
testcase_32 AC 134 ms
103,672 KB
testcase_33 AC 150 ms
113,768 KB
testcase_34 AC 132 ms
108,360 KB
testcase_35 AC 149 ms
110,516 KB
testcase_36 AC 105 ms
109,668 KB
testcase_37 AC 126 ms
107,404 KB
testcase_38 AC 105 ms
107,796 KB
testcase_39 AC 80 ms
92,196 KB
testcase_40 AC 99 ms
97,184 KB
testcase_41 AC 35 ms
52,436 KB
testcase_42 AC 97 ms
92,192 KB
testcase_43 AC 113 ms
100,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
for i in range(n):
    a[i] -= i
from bisect import bisect_left, bisect_right
INF = 1<<60
dp = [INF]*n
for i in a:
    dp[bisect_right(dp,i)] = i
print(n-bisect_left(dp,INF))
0