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.|

RGB8020 - Ижил хос тооны дугаар

Бүхэл тоон N элементтэй массив өгөгдөв. Ижил хос элементийн массив дахь дугаар болох  2 тоог ол. Бүх элемент ялгаатай бол 0 0 гэж хэвлэ. Хос элементүүд олон бол эхний хос элементийн дугааруудыг хэвлэ. 

Input

Эхний мөрөнд N тоо. (1<=N<=100)

Дараагийн мөрөнд Integer төрлийн N тоонууд зайгаар тусгаарлагдан өгөгдөнө.

Output

Эхний хос элементийн массив дахь дугаарууд.

Example

Input:
5
1 2 1 3 4

Output:
1 3
Input:
4
1 2 3 4
Output
0 0

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

hide comments
2023-10-13 10:47:00
#include<bits/stdc++.h>

using namespace std;

int main (){
int a, j, i;
cin >> a;
int arr[a], b=0;
for ( int i = 0; i < a; i ++){
cin >> arr[i];
}
for ( i=0; i<a; i++){
for (int j=i+1; j<a; j++){
if(arr[i]==arr[j]){
i++;
j++;
cout << i << " " << j;
return 0;
}
}
}
cout << "0" << " 0";
}
oroo bodotsgoo zvgerl sana aw
2021-03-27 06:03:53
altan suvd magadgui cout alga
2019-05-30 04:18:40
#include<iostream>
#include<cstdio>
using namespace std;

int main(){
int n;
cin >> n;
int a[n];
for(int i = 0; i < n ; i++){
cin >> a[i];
// cout << a[i];
}
int count = 0, c=0, l=0;
for(int i = 0; i < n ; i++){
for(int j = i+1; j < n; j++){
if(a[i] == a[j]){
l++;
count = i+1;
c = j+1;
//printf("a[%d]=%d:==:a[%d]=%d\n", i,a[i], j,a[j]);
}
}
}
if(l < 2){

cout << count;
cout << " ";
cout << c;
}
else {

for(int i = 0; i < n ; i++){
for(int j = i+1; j < n; j++){
if(a[i] == a[j]){
l++;
count = i+1;
c = j+1;
break;
//printf("a[%d]=%d:==:a[%d]=%d\n", i,a[i], j,a[j]);
}
}
break;
}
cout << count;
cout << " ";
cout << c;
}
}
ene bol zov
2019-05-30 04:16:30
#include<iostream>
#include<cstdio>
using namespace std;

int main(){
int n;
cin >> n;
int a[n];
for(int i = 0; i < n ; i++){
cin >> a[i];
// cout << a[i];
}
int count = 0, c=0, l=0;
for(int i = 0; i < n ; i++){
for(int j = i+1; j < n; j++){
if(a[i] == a[j]){
l++;
count = i+1;
c = j+1;
//printf("a[%d]=%d:==:a[%d]=%d\n", i,a[i], j,a[j]);
}
}
}
if(l < 2){

cout << count;
cout << " ";
cout << c;
}
else
for(int i = 0; i < n ; i++){
for(int j = i+1; j < n; j++){
if(a[i] == a[j]){
l++;
count = i+1;
c = j+1;
break;
//printf("a[%d]=%d:==:a[%d]=%d\n", i,a[i], j,a[j]);
}
}
break;
}
cout << count;
cout << " ";
cout << c;
}
2016-03-01 10:13:26
zail aa
2013-05-02 02:05:41 S.Altansuvd
aldaag n olood ogooj
#include<stdio.h>
main(){
int n,a[1000],t=0,i,j,p=0;
scanf("%d",&n);
for(i=0;i<n;i++)scanf("%d",&a[i]);
for(i=n;i>0;i--) { for(j=i-1;j>0;j--) {if(a[j]==a[i]) t=i, p=j;
} }
if(t!=0&&p!=0)
printf("%d %d",p,t );

else printf("0,0");

}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.