SWEA_1285) 아름이의 돌 던지기
SWEA
# D2
1285) 아름이의 돌 던지기 (19.10.04)
문제 링크 (SW Expert Academy)
* 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
27
28
29
30
31
32
33
34
35
36
37
|
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String args[]) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer tk;
int t = Integer.parseInt(br.readLine());
for(int i=1;i<=t;i++) {
int n = Integer.parseInt(br.readLine());
int[] arr = new int[n];
tk = new StringTokenizer(br.readLine());
for(int j=0;j<n;j++) {
arr[j] = Math.abs(Integer.parseInt(tk.nextToken()));
}
Arrays.sort(arr);
int sub = arr[0];
int cnt = 1;
for(int j=1;j<n;j++) {
if(arr[j]==arr[0]) cnt = cnt+1;
}
bw.write("#" + i + " " + sub + " " + cnt + "\n");
}
bw.flush();
bw.close();
}
}
| cs |
댓글
댓글 쓰기