반응형
출처: SWEA
Input
3
300 400 240
300 400 350
300 400 480
Output
#1 60
#2 0
#3 -1
#include <iostream>
using namespace std;
int X, L, U, answer;
int main() {
int testCase; cin >> testCase;
for (int tc = 1; tc <= testCase; ++tc) {
cin >> L >> U >> X;
if (X < L) answer = L - X;
else if (X > U) answer = -1;
else answer = 0;
cout << "#" << tc << " ";
cout << answer;
cout << endl;
}
}
반응형
'PS 문제 풀이 > SWEA' 카테고리의 다른 글
[SWEA] 3408 세가지 합 구하기 (0) | 2021.02.24 |
---|---|
[SWEA] 3456 직사각형 길이 찾기 (0) | 2021.02.24 |
[SWEA] 1540 좋은 문자열 (0) | 2021.02.24 |
[SWEA] 3499 퍼펙트 셔플 (0) | 2021.02.24 |
[SWEA] 3750 Digit sum (0) | 2021.02.24 |
댓글