1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//Autor: Mateusz Wasylkiewicz
//Zawody: Potyczki Algorytmiczne 2019
//Strona: http://potyczki.mimuw.edu.pl/
//Zadanie: Wina, runda 1B
//Czas: Theta(n^2)
#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
typedef vector<int> VI;
#define FOR(x, a, b) for (int x = (a); x <= (b); x++)
#define FORD(x, a, b) for (int x = (a); x >= (b); x--)
#define REP(x, n) for (int x = 0; x < (n); x++)
#define VAR(v, n) __typeof(n) v = (n)
#define ALL(c) (c).begin(), (c).end()
#define SIZE(x) (int((x).size()))
#define FOREACH(i, c) for (VAR(i, (c).begin()); i != (c).end(); i++)
#define PB push_back
#define ST first
#define ND second
#define POKAZ(x) cerr << #x << " = " << (x) << '\n'

const int MAX_N = 2010;
int n, k, a[MAX_N][MAX_N];

void wczytaj_dane()
{
	cin >> n >> k;
	REP(i, n)
		FOR(j, 0, i)
			cin >> a[i][j];
}

int ile_zdjac(int i, int j)
{
	return (j + 1) * (i - j + 1);
}

int rozwiaz()
{
	int wynik = a[0][0];
	REP(i, n)
		FOR(j, 0, i)
			if (ile_zdjac(i, j) <= k)
				wynik = min(wynik, a[i][j]);
	return wynik;
}

void zrob_test()
{
	wczytaj_dane();
	cout << rozwiaz() << '\n';
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	zrob_test();
	return 0;
}