Recent Posts
Notice
No Rules Rules
R2 (feat. 백준, 3046번) 본문
728x90
반응형
R2
https://www.acmicpc.net/problem/3046
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int R1, S;
cin >> R1 >> S;
cout << 2 * S - R1;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
개수 세기 (feat. 백준, 10807번) (0) | 2022.10.19 |
---|---|
행렬 덧셈 (feat. 백준, 2738번) (0) | 2022.10.19 |
과자 (feat. 백준, 10156번) (0) | 2022.10.19 |
신입 사원 (feat. 백준, 1946번) (0) | 2022.10.19 |
회전 초밥 (feat. 백준, 15961번) (0) | 2022.10.18 |
Comments