# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1027014 | 2024-07-18T18:36:51 Z | HasanV11010238 | Trol (COCI19_trol) | C++17 | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long ll su(ll x){ ll ret = 45 * (x / 9); ll val = x % 9; ret += val * (val + 1) / 2; return ret; } int main(){ ll q, a, b; cin>>q; while (q--){ cin>>a>>b; cout<<su(b) - su(a - 1)<<"\n"; } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 0 ms | 348 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 1 ms | 344 KB | Output is correct |