結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | hokekiyoo |
提出日時 | 2019-10-25 21:44:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-04-24 18:34:44 |
合計ジャッジ時間 | 1,580 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
N, M, K = map(int, input().split()) cost = [] for i in range(N): As = list(map(int, input().split())) cost.append(As) # print(cost) money = [[0]*(K+1) for i in range(N+1)] money[0][0] = 1 # print(money) for i in range(N): cs = cost[i] ms = money[i] for c in cs: for j, m in enumerate(ms): if m == 1 and j+c <= K: money[i+1][j+c] = 1 ans = K + 1 for i, m in enumerate(money[N]): if m==1: ans = i print(K-ans)