結果

問題 No.54 Happy Hallowe'en
ユーザー dangodango
提出日時 2023-07-09 21:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-23 19:11:09
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 38 ms
51,696 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 87 ms
76,492 KB
testcase_05 AC 83 ms
76,544 KB
testcase_06 AC 89 ms
76,800 KB
testcase_07 AC 95 ms
76,928 KB
testcase_08 AC 104 ms
76,800 KB
testcase_09 AC 108 ms
76,808 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 95 ms
76,868 KB
testcase_13 AC 103 ms
77,056 KB
testcase_14 AC 39 ms
51,696 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 40 ms
52,460 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 39 ms
52,224 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