結果

問題 No.1583 Building Blocks
ユーザー rlangevinrlangevin
提出日時 2023-10-16 12:35:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 64,480 KB
最終ジャッジ日時 2024-09-16 22:13:18
合計ジャッジ時間 3,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,300 KB
testcase_01 AC 34 ms
53,316 KB
testcase_02 AC 35 ms
53,160 KB
testcase_03 AC 46 ms
62,776 KB
testcase_04 AC 39 ms
60,860 KB
testcase_05 AC 37 ms
61,332 KB
testcase_06 AC 45 ms
62,040 KB
testcase_07 AC 42 ms
61,628 KB
testcase_08 AC 38 ms
60,988 KB
testcase_09 AC 46 ms
62,992 KB
testcase_10 AC 36 ms
59,548 KB
testcase_11 AC 36 ms
52,392 KB
testcase_12 AC 46 ms
63,384 KB
testcase_13 AC 47 ms
62,816 KB
testcase_14 AC 44 ms
62,668 KB
testcase_15 AC 46 ms
61,944 KB
testcase_16 AC 46 ms
63,868 KB
testcase_17 AC 46 ms
63,208 KB
testcase_18 AC 42 ms
61,252 KB
testcase_19 AC 51 ms
64,480 KB
testcase_20 AC 43 ms
62,020 KB
testcase_21 AC 43 ms
63,020 KB
testcase_22 AC 43 ms
61,860 KB
testcase_23 AC 41 ms
61,432 KB
testcase_24 AC 47 ms
62,856 KB
testcase_25 AC 31 ms
52,628 KB
testcase_26 AC 50 ms
63,416 KB
testcase_27 AC 43 ms
62,040 KB
testcase_28 AC 51 ms
63,676 KB
testcase_29 AC 43 ms
62,140 KB
testcase_30 AC 45 ms
60,752 KB
testcase_31 AC 46 ms
62,548 KB
testcase_32 AC 43 ms
61,752 KB
testcase_33 AC 47 ms
62,032 KB
testcase_34 AC 33 ms
53,812 KB
testcase_35 AC 41 ms
61,552 KB
testcase_36 AC 44 ms
62,400 KB
testcase_37 AC 38 ms
61,024 KB
testcase_38 AC 32 ms
52,896 KB
testcase_39 AC 32 ms
52,944 KB
testcase_40 AC 33 ms
53,104 KB
testcase_41 AC 34 ms
53,252 KB
testcase_42 AC 32 ms
52,400 KB
testcase_43 AC 31 ms
52,016 KB
testcase_44 AC 32 ms
52,216 KB
testcase_45 AC 32 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
D = []
for i in range(N):
    w, s = map(int, input().split())
    D.append((s + w, w, s))

D.sort()
inf = 10 ** 18
dp = [inf] * (N + 1)
dp[0] = 0
for i in range(N):
    for j in range(N -1, -1, -1):
        if D[i][2] >= dp[j]:
            dp[j + 1] = min(dp[j + 1], dp[j] + D[i][1])

ans = -1
for i in range(N + 1):
    if dp[i] != inf:
        ans = i

print(ans)
0