結果

問題 No.914 Omiyage
ユーザー stngstng
提出日時 2022-08-14 12:04:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-10-01 05:19:31
合計ジャッジ時間 2,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,360 KB
testcase_01 AC 52 ms
63,100 KB
testcase_02 AC 46 ms
59,884 KB
testcase_03 AC 52 ms
62,956 KB
testcase_04 AC 45 ms
60,140 KB
testcase_05 AC 40 ms
53,224 KB
testcase_06 AC 40 ms
53,228 KB
testcase_07 AC 39 ms
52,928 KB
testcase_08 AC 44 ms
59,084 KB
testcase_09 AC 39 ms
52,264 KB
testcase_10 AC 49 ms
61,876 KB
testcase_11 AC 48 ms
61,784 KB
testcase_12 AC 51 ms
63,068 KB
testcase_13 AC 50 ms
62,212 KB
testcase_14 AC 51 ms
62,984 KB
testcase_15 AC 48 ms
62,084 KB
testcase_16 AC 50 ms
63,036 KB
testcase_17 AC 51 ms
62,792 KB
testcase_18 AC 39 ms
52,540 KB
testcase_19 AC 39 ms
53,716 KB
testcase_20 AC 39 ms
53,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,K = map(int,input().split())
a = [[int(i) for i in input().split()] for j in range(n)]

dp = [0]*(K+1)
dp[0] = 1

for i in range(n):
    dpn = [0]*(K+1)
    for j in range(K+1):
        for k in range(m):
            val = j+a[i][k]
            #print(val)
            if val <= K:
                dpn[val] += dp[j]
                #print(val,dp[j],dpn)
    dp = dpn[:]

ans = -1

for i in range(1,K+1):
    if dp[i] >= 1:
        ans = K-i
print(ans)
0