結果

問題 No.54 Happy Hallowe'en
ユーザー szkhtsszkhts
提出日時 2023-12-03 08:04:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-26 22:02:12
合計ジャッジ時間 2,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 42 ms
10,880 KB
testcase_05 AC 49 ms
11,264 KB
testcase_06 AC 57 ms
11,520 KB
testcase_07 AC 69 ms
11,776 KB
testcase_08 AC 81 ms
12,032 KB
testcase_09 AC 87 ms
12,416 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 77 ms
12,032 KB
testcase_13 AC 81 ms
12,160 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,496 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