結果

問題 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  
実行時間 97 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 11,776 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2023-12-03 08:04:04
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
9,984 KB
testcase_01 AC 29 ms
9,984 KB
testcase_02 AC 27 ms
9,984 KB
testcase_03 AC 27 ms
9,984 KB
testcase_04 AC 38 ms
10,496 KB
testcase_05 AC 45 ms
10,752 KB
testcase_06 AC 59 ms
11,008 KB
testcase_07 AC 59 ms
11,264 KB
testcase_08 AC 67 ms
11,392 KB
testcase_09 AC 97 ms
11,776 KB
testcase_10 AC 28 ms
9,984 KB
testcase_11 AC 27 ms
9,984 KB
testcase_12 AC 70 ms
11,520 KB
testcase_13 AC 73 ms
11,648 KB
testcase_14 AC 28 ms
9,984 KB
testcase_15 AC 27 ms
9,984 KB
testcase_16 AC 27 ms
9,984 KB
testcase_17 AC 26 ms
9,984 KB
testcase_18 AC 28 ms
9,984 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