結果

問題 No.914 Omiyage
ユーザー yakeshibayakeshiba
提出日時 2021-03-12 01:11:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 61,820 KB
最終ジャッジ日時 2024-10-13 11:47:16
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,920 KB
testcase_01 AC 47 ms
61,820 KB
testcase_02 AC 47 ms
60,772 KB
testcase_03 AC 48 ms
61,236 KB
testcase_04 AC 45 ms
60,608 KB
testcase_05 AC 40 ms
53,840 KB
testcase_06 AC 39 ms
51,752 KB
testcase_07 AC 37 ms
53,180 KB
testcase_08 AC 42 ms
58,396 KB
testcase_09 AC 37 ms
52,432 KB
testcase_10 AC 47 ms
59,416 KB
testcase_11 AC 44 ms
59,016 KB
testcase_12 AC 47 ms
59,988 KB
testcase_13 AC 47 ms
61,324 KB
testcase_14 AC 48 ms
60,268 KB
testcase_15 AC 47 ms
61,128 KB
testcase_16 AC 43 ms
59,804 KB
testcase_17 AC 46 ms
60,788 KB
testcase_18 AC 39 ms
51,756 KB
testcase_19 AC 38 ms
53,164 KB
testcase_20 AC 39 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, money = map(int,input().split())
A = [0]*n
for i in range(n):
    A[i] = list(map(int,input().split()))
    
dp = [[0]*(money+1) for _ in range(n+1)]
dp[0][0] = 1
for i in range(n):
    for j in range(m):
        for k in range(money):
            if k + A[i][j] <= money and dp[i][k]:
                dp[i+1][k+A[i][j]] = 1
                
for j in range(money, -1, -1):
    if dp[n][j]:
        print(money-j)
        exit()
        
print(-1)
0