본문 바로가기
PS 문제 풀이/SWEA

[SWEA] 3142 영준이와 신비한 뿔의 숲

by 까망 하르방 2021. 3. 1.
반응형

출처: SWEA 

 Input 

2

5 3

7 5

 

 Output 

#1 1 2

#2 3 2

 

이차방정식을 통해서 풀이

- 유니콘의 수 unicon,  트윈혼의 수 twinHorn

▶ unicon + 2twinHorn = n

▶ unicon + twinHorn = m

 twinHorn = n - m

 unicon = m - twinHorn


#include <iostream>
using namespace std;
 
int main(){
    int testCase; cin >> testCase;
 
    int n, m, unicon, twinHorn;
    for (int tc = 1; tc <= testCase; ++tc) {
        cin >> n >> m;
        twinHorn = n - m;
        unicon = m - twinHorn;
 
        cout << "#" << tc << " ";
        cout << unicon << " " << twinHorn;
        cout << endl;
    }
}

 

반응형

'PS 문제 풀이 > SWEA' 카테고리의 다른 글

[SWEA] 1259 금속막대  (0) 2021.05.14
[SWEA] 3314 보충학습과 평균  (0) 2021.03.01
[SWEA] 3066 팀 정하기  (0) 2021.03.01
[SWEA] 1284 수도 요금 경쟁  (0) 2021.03.01
[SWEA] 1234 비밀번호  (0) 2021.03.01

댓글