結果

問題 No.914 Omiyage
ユーザー H3PO4H3PO4
提出日時 2021-05-06 10:08:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,328 KB
最終ジャッジ日時 2024-09-14 03:07:19
合計ジャッジ時間 13,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
44,076 KB
testcase_01 AC 535 ms
43,820 KB
testcase_02 AC 530 ms
43,820 KB
testcase_03 AC 535 ms
44,076 KB
testcase_04 AC 526 ms
43,824 KB
testcase_05 AC 530 ms
44,200 KB
testcase_06 AC 525 ms
43,820 KB
testcase_07 AC 526 ms
43,948 KB
testcase_08 AC 515 ms
43,812 KB
testcase_09 AC 515 ms
44,208 KB
testcase_10 AC 532 ms
43,820 KB
testcase_11 AC 527 ms
44,072 KB
testcase_12 AC 528 ms
43,812 KB
testcase_13 AC 524 ms
43,952 KB
testcase_14 AC 521 ms
43,816 KB
testcase_15 AC 519 ms
44,328 KB
testcase_16 AC 526 ms
43,944 KB
testcase_17 AC 529 ms
44,196 KB
testcase_18 AC 531 ms
43,948 KB
testcase_19 AC 530 ms
44,072 KB
testcase_20 AC 532 ms
44,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M, K = map(int, input().split())
dp = np.zeros(K + 1, dtype=bool)
dp[K] = True

for _ in range(N):
    A = map(int, input().split())
    new_dp = np.zeros(K + 1, dtype=bool)
    for a in A:
        new_dp[:-a] |= dp[a:]
    dp = new_dp
    if not np.any(dp):
        print(-1)
        exit()

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