結果

問題 No.54 Happy Hallowe'en
ユーザー shotoyooshotoyoo
提出日時 2021-07-22 18:06:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 77,052 KB
最終ジャッジ日時 2024-07-17 15:01:07
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,348 KB
testcase_01 AC 37 ms
54,056 KB
testcase_02 AC 37 ms
53,620 KB
testcase_03 AC 37 ms
53,236 KB
testcase_04 AC 58 ms
74,372 KB
testcase_05 AC 64 ms
76,592 KB
testcase_06 AC 70 ms
76,492 KB
testcase_07 AC 76 ms
76,664 KB
testcase_08 AC 85 ms
76,800 KB
testcase_09 AC 89 ms
76,884 KB
testcase_10 AC 38 ms
52,436 KB
testcase_11 AC 37 ms
52,928 KB
testcase_12 AC 73 ms
76,868 KB
testcase_13 AC 83 ms
77,052 KB
testcase_14 AC 38 ms
52,920 KB
testcase_15 AC 36 ms
52,088 KB
testcase_16 AC 36 ms
52,156 KB
testcase_17 AC 36 ms
52,132 KB
testcase_18 AC 37 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
vt = [tuple(map(int, input().split())) for _ in range(n)]
vt.sort(key=lambda item: item[0]+item[1])
dp = 1
mask0 = (1<<30000)-1
for v,t in vt:
    # t未満のところはv増やせる
    mask = (1<<t) - 1
    dp = dp | (dp&mask)<<v
    dp &= mask0
for i in range(dp.bit_length())[::-1]:
    if dp>>i&1:
        ans = i
        break
print(ans)
0