https://codeforces.com/contest/1409/problem/A
[난이도] Div.3
[유형] 수학
[풀이]
a,b 차이의 절댓값을 d라고 했을 때 d/10의 값에다 d%10이 0이 아니라면 1을 더한 값을 출력해주면 된다.
#include <cstdio>
#include <cmath>
using namespace std;
int tc,a,b;
int main(){
scanf("%d",&tc);
while(tc--){
scanf("%d%d",&a,&b);
int d = abs(a-b);
printf("%d\n",d/10+(d%10!=0));
}
}
https://github.com/has2/Problem-Solving/blob/master/codeforces/Round667-Div.3/A.cpp
'Problem-Solving > Codeforces' 카테고리의 다른 글
[Codeforces][Round #650][Div.3] B : Even Array (C++) (0) | 2021.01.06 |
---|---|
[Codeforces][Round #650][Div.3] A : Short Substrings (C++) (0) | 2021.01.06 |
[Codeforces][Round #667][Div.3] D : Decrease the Sum of Digits (C++) (0) | 2021.01.06 |
[Codeforces][Round #667][Div.3] C : Yet Another Array Restoration (C++) (0) | 2021.01.06 |
[Codeforces][Round #667][Div.3] B : Minimum Product (C++) (0) | 2021.01.02 |