#include #define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i]; #define ft first #define sc second #define pb push_back #define lb lower_bound #define ub upper_bound #define all(v) (v).begin(),(v).end() #define LB(a,x) lb(all(a),x)-a.begin() #define UB(a,x) ub(all(a),x)-a.begin() #define mod 1000000007 #define FS fixed< using V=vector; using Graph = vector>; using P=pair; typedef unsigned long long ull; typedef long double ldouble; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } const ll INF=1e18; bool dp[15][505]; int main(){ cin.tie(0);ios::sync_with_stdio(false); int n,m,kk; cin>>n>>m>>kk; int a[n][m]; rep(i,n){ rep(j,m)cin>>a[i][j]; } dp[0][0]=1; rep(i,n){ rep(j,m){ for(int k=0;k<=kk;k++){ if(k-a[i][j]>=0&&dp[i][k-a[i][j]])dp[i+1][k]=1; } } } int ans=-1; for(int i=kk;i>=0;i--){ if(dp[n][i]){ ans=kk-i; break; } } cout< a(m)でm==0というものはできない) modはなるべく最後に取れ! doubleを扱うときには(abs)ではなく'fabs'!!! */