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