# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
319325 | 2020-11-04T19:50:00 Z | gustason | Trol (COCI19_trol) | C++14 | 1 ms | 364 KB |
#include <bits/stdc++.h> using namespace std; typedef long long llint; int q; int main(void) { scanf("%d", &q); while (q--) { llint l, r; scanf("%lld%lld", &l, &r); llint tot = r - l + 1; llint sol = (tot / 9) * 9 * 10 / 2; for (int i = 0; i < tot % 9; ++i) { int add = (int) ((l + i) % 9); if (add == 0) add = 9; sol += (llint) add; } printf("%lld\n", sol); } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 364 KB | Output is correct |
2 | Correct | 1 ms | 364 KB | Output is correct |
3 | Correct | 1 ms | 364 KB | Output is correct |
4 | Correct | 1 ms | 364 KB | Output is correct |
5 | Correct | 1 ms | 364 KB | Output is correct |