結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
43,948 KB
testcase_01 AC 449 ms
44,332 KB
testcase_02 AC 447 ms
43,940 KB
testcase_03 AC 443 ms
43,940 KB
testcase_04 AC 462 ms
43,976 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 448 ms
43,952 KB
testcase_11 RE -
testcase_12 AC 507 ms
43,820 KB
testcase_13 RE -
testcase_14 AC 456 ms
44,080 KB
testcase_15 AC 458 ms
44,072 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
MAX = 10000

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