본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 9076번:점수 집계 답

반응형
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
38
39
40
41
42
43
#include <iostream>
using namespace std;
int t, b, bi, s, si, a[5],ans;
int main() {
    cin >> t;
    while (t--)
    {
        b = 0;
        s = 11;
        bi = 0;
        si = 0;
        ans = 0;
        for (int i = 0; i < 5; i++)
        {
            cin >> a[i];
            if (a[i] >= b)//최대값
            {
                b = a[i];
                bi = i;
            }
            if (a[i] < s)//최소값
            {
                s = a[i];
                si = i;
            }
        }
 
        a[bi] = 0;
        a[si] = 0;
        int b1=0, s1=11;
        for (int i = 0; i < 5; i++)
        {
            if (a[i] >= b1)
                b1 = a[i];
            if (a[i] < s1 && a[i]!=0)
                s1 = a[i];
            ans += a[i];
        }
        if (b1 - s1 >= 4) { cout << "KIN" << '\n'; }
        else
            cout << ans<<'\n';
    }
}
cs