#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long int ll; typedef unsigned int uint; typedef unsigned char uchar; typedef unsigned long long ull; typedef pair pii; typedef pair pll; typedef vector vi; #define REP(i,x) for(int i=0;i<(int)(x);i++) #define REPS(i,x) for(int i=1;i<=(int)(x);i++) #define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--) #define RREPS(i,x) for(int i=((int)(x));i>0;i--) #define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++) #define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++) #define ALL(container) (container).begin(), (container).end() #define RALL(container) (container).rbegin(), (container).rend() #define SZ(container) ((int)container.size()) #define mp(a,b) make_pair(a, b) #define pb push_back #define eb emplace_back #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); template bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } template ostream& operator<<(ostream &os, const vector &t) { os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os; } template ostream& operator<<(ostream &os, const set &t) { os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os; } template ostream& operator<<(ostream &os, const pair &t) { return os<<"("< pair operator+(const pair &s, const pair &t){ return pair(s.first+t.first, s.second+t.second);} template pair operator-(const pair &s, const pair &t){ return pair(s.first-t.first, s.second-t.second);} const int INF = 1<<28; const double EPS = 1e-8; const int MOD = 1000000007; int n, m, K; int w[102][102]; int dp[102][102][102]; int main(int argc, char *argv[]){ ios::sync_with_stdio(false); while(~scanf("%d%d%d", &n, &m, &K)){ REP(i, n)REP(j, m){ scanf("%d", &w[i][j]); } memset(dp, 0, sizeof(dp)); dp[0][0][0] = 1; if(w[0][0] <= K) dp[0][0][w[0][0]] = 1; REP(y, n)REP(x, m)REP(k, K+1)if(dp[y][x][k]){ REP(r, 2)REP(d, 2)if(r != d){ int dy = y+d, dx = x+r; if(dy >= n || dx >= m) continue; if(k+w[dy][dx] <= K) dp[dy][dx][k+w[dy][dx]] = 1; dp[dy][dx][k] = 1; } } int ans = 0; REPS(i, K) if(dp[n-1][m-1][i]) ans = i; cout << ans << endl; } return 0; }