Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- ios_base::sync_with_stdio(false);
- int n;
- cin >> n;
- int niza[n];
- for(int i = 0; i < n; i++) {
- cin >> niza[i];
- }
- int max_cnt =0 ;
- int broj = 0;
- for(int i = 0; i < n; i++) {
- int cnt =0 ;
- for(int a = 1; a <= niza[i]; a++) {
- for(int k = 0; k <= niza[i]; k++) {
- int d = (k + 1) * a + ((k * (k + 1)) / 2);
- if(d == niza[i]) {
- cnt++;
- }
- }
- }
- if(max_cnt < cnt) {
- max_cnt = cnt;
- broj = niza[i];
- }
- else if(max_cnt == cnt) {
- if(broj > niza[i]) {
- broj = niza[i];
- }
- }
- }
- cout << broj << " " << max_cnt << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement