結果

問題 No.54 Happy Hallowe'en
ユーザー しらっ亭しらっ亭
提出日時 2015-11-12 23:27:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 464 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-09-13 14:32:50
合計ジャッジ時間 13,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
22,656 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 2,457 ms
11,136 KB
testcase_05 AC 4,325 ms
11,520 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())

    H = [None] * N

    for i in range(N):
        v, t = map(int, input().split())
        H[i] = (v, t)

    H.sort(key=lambda x: x[0] + x[1])

    dp = [False] * 20001
    dp[0] = True

    ma = 0
    for i in range(N):
        v, t = H[i]
        for j in range(t - 1, -1, -1):
            if dp[j]:
                dp[j + v] = True
                ma = max(ma, j + v)

    print(ma)


if __name__ == '__main__':
    solve()
0