[SWEA]아름이의 돌 던지기

Posted by kyoungIn on May 7, 2019

아름이의 돌 던지기

링크

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <iostream>
#include <math.h>
using namespace std;

int main(){
    int t; cin >> t;
    for(int T=1;T<=t;T++){
        int res=10000000,peple,pp=0;
        cin >> peple;
        for(int i=0;i<peple;i++){
            int temp; cin >> temp;
            if(res >abs(temp-0)){
                res= abs(temp-0);
                pp=1;
            }
            else if(res==abs(temp-0)){
                pp++;
            }
            else{}
        }
        cout <<'#'<<T<<' '<<res<<' '<<pp<<'\n';
    }
}