#include <iostream>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(NULL);
int n,k,a;
int lowest=3000;
cin>>n>>k;
for(int i=1;i<=n;++i){
for(int j=1;j<=i;++j){
cin>>a;
if((i-j+1)*j<=k && a<lowest)lowest=a;
}}
cout<<lowest;
return 0;
}
/*
5 5
1999
2019 2010
850 1500 1600
900 900 710 900
1000 800 600 800 1000
*/
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 | #include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(NULL); int n,k,a; int lowest=3000; cin>>n>>k; for(int i=1;i<=n;++i){ for(int j=1;j<=i;++j){ cin>>a; if((i-j+1)*j<=k && a<lowest)lowest=a; }} cout<<lowest; return 0; } /* 5 5 1999 2019 2010 850 1500 1600 900 900 710 900 1000 800 600 800 1000 */ |
English