Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7507 - Массивын их нь хэд дэх

Өгөгдсөн нэг хэмжээст бүхэл тоон массивын хамгийн их элемент хэд дэх нь вэ? Хэрэв хамгийн их элемент 1-ээс их бол бага дугаарыг нь хэвлэнэ.

Input

Эхний мөрөнд массивын элементийн тоо өгөгдөнө. n<=100.

Хоёр дахь мөрөнд массивын элементүүд зайгаар тусгаарлагдан өгөгдөнө.

Output

Массивын хамгийн их элемент, дугаарын хамт зайгаар тусгаарлагдан нэг мөрөнд хэвлэгдэнэ. 

Example

Input:
5
9 10 8 10 6

Output:
10 2

Нэмсэн:Bataa
Огноо:2013-01-15
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2020-01-26 06:12:04
.

Last edit: 2020-01-26 06:13:59
2019-12-12 04:30:32
#include<bits/stdc++.h>

using namespace std;

int main(){
int n,m,i,p;
int a[102];

cin>>n;

for(i=1; i<=n; i++) {
cin>>a[i];
}

m=a[1];
for(i=2; i<=n; i++){
if(a[i]>m) m=a[i];
}

for(i=1; i<=n; i++){
if(a[i]==m){
p=i;
i=n;
}
}

cout<<m<<" "<<p<<endl;

return 0;
}\

2019-11-30 05:24:58
#include <cstdio>

int main(){
int a[105];
int n;
scanf("%d",&n);
int c=-1000000 , id;
for(int i=1;i<=n;i++){
scanf("%d" , &a[i]);
if(a[i] > c){
c = a[i];
id = i;
}
}
printf("%d %d" , c , id);
}
2019-11-25 10:02:06
#include <iostream>
using namespace std;

int main() {

long long n;

cin>> n;

long long arr[n], i, max = -9999999, pos;

for(i = 0 ; i <= n - 1 ; i++){

cin>> arr[i];

if(arr[i] > max){

max = arr[i];

}

}

for(i = 0; i <= n - 1 ; i++){

if(arr[i] == max){

pos = i + 1;

cout<< max << " " << pos;

return 0;

}

}


return 0;
}
LOLOLOL
2019-11-16 07:22:51
Nihao laoshi wo de mama
2019-10-27 06:37:22
lol

Last edit: 2019-10-27 06:37:40
2019-10-23 09:41:58
#include <bits/stdc++.h>
using namespace std;
int main(){
long long a,b,c=-10000000,d = 0,x[100];
cin>>a;
for(int i=1;i<=a;i++){
cin>>x[i];
if(x[i]>c){
c=x[i];
d = i;
}
}
cout<<c<<" "<<d;
}
2019-10-01 08:36:09
#include <iostream>
using namespace std;


int main(){
int n,c;
cin>>n;
int ar[n];
c=0;
while(c<n){
cin>>ar[c];
c=c+1;
}
c=0;
int max=ar[0],d=0;

while(c<n){
if(max<ar[c]){
max=ar[c];
d=c;
}
c=c+1;
}

cout<<max<<" "<<d+1;
}
2019-09-30 03:00:24
#include<iostream>
using namespace std;
int main(){
int a,c=0,d=0,l;
cin>>a;
int b[a];
while(a>c){
cin>>b[c];
if(d<b[c]){
d=b[c];
l=c;
}
c++;
}
cout<<d<<" "<<l+1;
}
2019-04-08 04:12:46
#include <bits/stdc++.h>
using namespace std;

int main()
{
int a[1000];
int d,i,j,n,max,t;
scanf("%d",&n);

for (i=1; i<=n; i++)
cin>>a[i];
max=a[1]; d=1;
for (i=2; i<=n; i++)
if(max<a[i])
{
max=a[i];
d=i;
}
printf("%d %d",max,d);
return 0;
}
odna
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.