結果

問題 No.54 Happy Hallowe'en
ユーザー H3PO4H3PO4
提出日時 2023-02-19 14:27:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 608 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-07-20 15:06:45
合計ジャッジ時間 12,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
44,208 KB
testcase_01 AC 546 ms
43,952 KB
testcase_02 AC 527 ms
44,204 KB
testcase_03 AC 535 ms
44,200 KB
testcase_04 AC 554 ms
44,200 KB
testcase_05 AC 560 ms
44,192 KB
testcase_06 AC 574 ms
43,940 KB
testcase_07 AC 584 ms
44,072 KB
testcase_08 AC 596 ms
44,204 KB
testcase_09 AC 608 ms
44,196 KB
testcase_10 AC 538 ms
43,816 KB
testcase_11 AC 535 ms
44,208 KB
testcase_12 AC 599 ms
44,456 KB
testcase_13 AC 604 ms
44,328 KB
testcase_14 AC 538 ms
44,200 KB
testcase_15 AC 534 ms
44,200 KB
testcase_16 AC 545 ms
44,072 KB
testcase_17 AC 530 ms
43,952 KB
testcase_18 AC 535 ms
43,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
MAX = 20000

homes = [tuple(map(int, input().split())) for _ in range(N)]
homes.sort(key=lambda x: x[0] + x[1])

dp = np.zeros(MAX + 1, dtype=bool)
dp[0] = True
for v, t in homes:
    new_dp = dp.copy()
    new_dp[v:v + t] |= dp[:t]
    dp = new_dp

print(np.nonzero(dp)[0].max())
0