結果

問題 No.1583 Building Blocks
ユーザー 👑 rin204rin204
提出日時 2022-01-26 23:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 68,944 KB
最終ジャッジ日時 2024-09-14 02:54:00
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,308 KB
testcase_01 AC 39 ms
52,496 KB
testcase_02 AC 39 ms
52,684 KB
testcase_03 AC 57 ms
63,232 KB
testcase_04 AC 50 ms
60,440 KB
testcase_05 AC 45 ms
59,356 KB
testcase_06 AC 56 ms
62,744 KB
testcase_07 AC 55 ms
64,036 KB
testcase_08 AC 48 ms
59,536 KB
testcase_09 AC 66 ms
66,896 KB
testcase_10 AC 44 ms
58,348 KB
testcase_11 AC 40 ms
52,980 KB
testcase_12 AC 59 ms
65,788 KB
testcase_13 AC 63 ms
66,252 KB
testcase_14 AC 56 ms
64,048 KB
testcase_15 AC 59 ms
64,924 KB
testcase_16 AC 62 ms
66,620 KB
testcase_17 AC 61 ms
66,384 KB
testcase_18 AC 51 ms
61,080 KB
testcase_19 AC 68 ms
68,944 KB
testcase_20 AC 54 ms
64,000 KB
testcase_21 AC 55 ms
65,108 KB
testcase_22 AC 54 ms
63,788 KB
testcase_23 AC 48 ms
60,728 KB
testcase_24 AC 62 ms
65,428 KB
testcase_25 AC 39 ms
52,692 KB
testcase_26 AC 64 ms
66,356 KB
testcase_27 AC 53 ms
63,136 KB
testcase_28 AC 67 ms
67,336 KB
testcase_29 AC 52 ms
62,804 KB
testcase_30 AC 49 ms
60,232 KB
testcase_31 AC 61 ms
64,812 KB
testcase_32 AC 53 ms
64,280 KB
testcase_33 AC 64 ms
68,116 KB
testcase_34 AC 39 ms
52,160 KB
testcase_35 AC 55 ms
62,804 KB
testcase_36 AC 60 ms
66,056 KB
testcase_37 AC 48 ms
61,104 KB
testcase_38 AC 39 ms
52,616 KB
testcase_39 AC 38 ms
52,992 KB
testcase_40 AC 39 ms
53,216 KB
testcase_41 AC 39 ms
53,080 KB
testcase_42 AC 39 ms
52,708 KB
testcase_43 AC 39 ms
52,128 KB
testcase_44 AC 41 ms
52,512 KB
testcase_45 AC 40 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ws = [list(map(int, input().split())) for _ in range(n)]
ws.sort(key = lambda x:x[0] + x[1])

inf = 1 << 60
dp = [0]
for w, s in ws:
    dp += [inf]
    l = len(dp)
    for i in range(l - 1, 0, -1):
        if dp[i - 1] <= s:
            dp[i] = min(dp[i], dp[i - 1] + w)
            
dp += [inf]
for i in range(1, len(dp)):
    if dp[i] == inf:
        print(i - 1)
        exit()
    
0