結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,208 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 49 ms
52,224 KB
testcase_03 WA -
testcase_04 AC 34 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
52,608 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 36 ms
52,480 KB
testcase_17 AC 36 ms
52,224 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 118 ms
104,932 KB
testcase_31 AC 136 ms
106,752 KB
testcase_32 AC 139 ms
103,808 KB
testcase_33 AC 155 ms
113,312 KB
testcase_34 AC 137 ms
108,160 KB
testcase_35 AC 159 ms
110,720 KB
testcase_36 AC 113 ms
109,440 KB
testcase_37 AC 134 ms
107,280 KB
testcase_38 AC 111 ms
107,896 KB
testcase_39 AC 87 ms
92,712 KB
testcase_40 AC 104 ms
97,264 KB
testcase_41 AC 35 ms
51,584 KB
testcase_42 AC 103 ms
92,288 KB
testcase_43 AC 118 ms
100,364 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