# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20415 | 2017-02-11T09:30:06 Z | KDH(#46, kdh9949) | 채점 시스템 (OJUZ11_judge) | C++11 | 49 ms | 2020 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int tc; scanf("%d", &tc); while(tc--){ ll x, y; scanf("%lld%lld", &x, &y); ll i; for(i = 1; i <= x; i *= 10); int ans = 0; while(i + x <= y){ ans++; i *= 10; } printf("%d\n", ans); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 2020 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 2020 KB | Output isn't correct |
2 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
3 | Incorrect | 33 ms | 2020 KB | Output isn't correct |
4 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
5 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
6 | Incorrect | 29 ms | 2020 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 2020 KB | Output isn't correct |
2 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
3 | Incorrect | 33 ms | 2020 KB | Output isn't correct |
4 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
5 | Incorrect | 39 ms | 2020 KB | Output isn't correct |
6 | Incorrect | 29 ms | 2020 KB | Output isn't correct |
7 | Incorrect | 43 ms | 2020 KB | Output isn't correct |
8 | Incorrect | 36 ms | 2020 KB | Output isn't correct |
9 | Incorrect | 46 ms | 2020 KB | Output isn't correct |
10 | Incorrect | 49 ms | 2020 KB | Output isn't correct |
11 | Incorrect | 33 ms | 2020 KB | Output isn't correct |