forked from ravipatel447/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmax_dist.java
26 lines (25 loc) · 888 Bytes
/
max_dist.java
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
import java.util.*;
public class max_dist {
public static void main(String[] args) {
Scanner sc = new Scanner (System.in);
int n = sc.nextInt();
int ar[] = new int [n];
int ar1[] = new int [n];
int ans[] = new int [n];
for(int i=0;i<n;i++){
ar[i] = sc.nextInt();
ar1[i] = ar[i];
}
Arrays.sort(ar1);
for(int i=n-1;i>=0;i--){
boolean hogaya = false;
if(!hogaya){
ans[i] = 0;
}
}
for(int i=0;i<n;i++){
System.out.print(ans[i]+" ");
}
sc.close();
}
}