結果

問題 No.914 Omiyage
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-06-13 14:20:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-06-25 03:26:33
合計ジャッジ時間 1,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,312 KB
testcase_01 AC 47 ms
61,440 KB
testcase_02 AC 47 ms
60,972 KB
testcase_03 AC 47 ms
61,312 KB
testcase_04 AC 47 ms
61,440 KB
testcase_05 AC 40 ms
58,496 KB
testcase_06 AC 41 ms
58,260 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 45 ms
60,032 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 AC 45 ms
60,032 KB
testcase_12 AC 46 ms
60,416 KB
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 46 ms
61,056 KB
testcase_15 AC 45 ms
60,544 KB
testcase_16 AC 42 ms
59,392 KB
testcase_17 AC 46 ms
60,928 KB
testcase_18 AC 40 ms
58,112 KB
testcase_19 AC 41 ms
58,368 KB
testcase_20 AC 42 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder problem solving
N, M, K = map(int, input().split())
data = [list(map(int, input().split())) for i in range(N)]
dp = [[0 for i in range(501)] for j in range(N+1)]
# dp[P][v] = P番目での買い物を終えて それまでに使った金を v円にできるか。
dp[0][0] = 1
for i in range(N):
    for j in range(M):
        x = data[i][j]
        for k in range(501):
            if k-x >= 0 and dp[i][k-x]:
                dp[i+1][k] = 1
ans = 0
for i in range(K+1):
    if dp[N][i] == 1:
        ans = i
if ans == 0:
    print(-1)
else:
    print(K-ans)
0