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
#include <iostream>

using namespace std;

int main() {
   ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int w,b;
    cin>>w>>b;

    int rok;

    int answer=2020;
    int i,j;
    int lewa,prawa;
    for ( i = 1; i <= w; i++) {
        lewa=1;
        prawa=i;
        for ( j = 0; j < i; j++) {
            lewa++;
            prawa--;
            cin>>rok;
            if(lewa*(prawa)<=b) {
                if (answer > rok) {
                    answer = rok;
                }
            }
        }
    }
    cout<<answer;
    return 0;
}