728x90
https://www.acmicpc.net/problem/11006
#include <iostream>
using namespace std;
int main() {
int testCase;
cin >> testCase;
for (int t = 0; t < testCase; t++) {
int allLegsCount;
int numOfChickens;
cin >> allLegsCount >> numOfChickens;
cout << numOfChickens * 2 - allLegsCount << " " << numOfChickens - (numOfChickens * 2 - allLegsCount) << '\n';
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 4948번 베르트랑 공준 (0) | 2020.02.20 |
---|---|
[백준] 3671번 산업 스파이의 편지 (0) | 2020.02.20 |
[백준] 3187번 양치기 꿍 (0) | 2020.02.18 |
[백준] 11724번 연결 요소의 개수 (0) | 2020.02.18 |
[백준] 17779번 게리맨더링 2 (0) | 2020.02.18 |