結果

問題 No.54 Happy Hallowe'en
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-04 00:51:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 533 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 264,160 KB
最終ジャッジ日時 2024-10-13 17:12:23
合計ジャッジ時間 24,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,132 KB
testcase_01 AC 34 ms
53,284 KB
testcase_02 AC 33 ms
52,288 KB
testcase_03 AC 36 ms
53,784 KB
testcase_04 AC 651 ms
104,380 KB
testcase_05 AC 1,148 ms
133,352 KB
testcase_06 AC 1,864 ms
169,192 KB
testcase_07 AC 2,900 ms
228,440 KB
testcase_08 AC 3,795 ms
264,128 KB
testcase_09 TLE -
testcase_10 AC 35 ms
52,012 KB
testcase_11 AC 35 ms
52,412 KB
testcase_12 AC 1,916 ms
181,784 KB
testcase_13 TLE -
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 40 ms
59,392 KB
testcase_18 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n = int(input())
VT = []
for i in range(n):
    v, t = map(int, input().split())
    VT.append((v,t))

VT.sort(key=lambda x: x[0]+x[1])
dp = set()
dp.add(0)
for v, t in VT:
    nx = set()
    for k in dp:
        nx.add(k)
    m = -1
    for k in dp:
        if k < t:
            if k+v >= t:
                nx.add(k+v)
            else:
                m = max(m, k+v)
    if m != -1:
        nx.add(m)
    dp = nx
dp = list(dp)
print(max(dp))
0