結果

問題 No.54 Happy Hallowe'en
ユーザー dangodango
提出日時 2023-07-09 21:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 78,332 KB
最終ジャッジ日時 2023-10-01 01:38:17
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,416 KB
testcase_01 AC 70 ms
71,032 KB
testcase_02 AC 70 ms
71,300 KB
testcase_03 AC 70 ms
71,468 KB
testcase_04 AC 104 ms
77,564 KB
testcase_05 AC 108 ms
77,612 KB
testcase_06 AC 115 ms
77,964 KB
testcase_07 AC 121 ms
78,016 KB
testcase_08 AC 127 ms
78,292 KB
testcase_09 AC 136 ms
78,332 KB
testcase_10 AC 70 ms
71,188 KB
testcase_11 AC 69 ms
71,276 KB
testcase_12 AC 123 ms
78,108 KB
testcase_13 AC 135 ms
78,256 KB
testcase_14 AC 71 ms
71,200 KB
testcase_15 AC 70 ms
71,520 KB
testcase_16 AC 70 ms
71,176 KB
testcase_17 AC 71 ms
71,328 KB
testcase_18 AC 69 ms
71,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = (2 ** 30000) - 1
for v, t in vt:
    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