문제 링크
C++ 풀이
#include <iostream>
#include <string>
using namespace std;
int main() {
string answer;
int N;
int score_sum, temp;
cin >> N;
for (int i = 1; i <= N; i++) {
score_sum = 0;
for (int j = 0; j < 5; j++) {
cin >> temp;
if (temp < 40)
temp = 40;
score_sum += temp;
}
answer += "#" + to_string(i) + " " + to_string(score_sum / 5) + "\n";
}
cout << answer;
return 0;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[프로그래머스] 비밀지도 (0) | 2019.11.24 |
---|---|
[프로그래머스] 다음 큰 숫자 (0) | 2019.11.23 |
[SWEA 5948] 새샘이의 7-3-5 게임 (0) | 2019.11.20 |
[프로그래머스] 멀쩡한 사각형 (0) | 2019.11.18 |
[프로그래머스] 프렌즈4블록 (0) | 2019.11.16 |