| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1084401 | laure | Trol (COCI19_trol) | C++17 | 1 ms | 424 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod=1e9+7;
signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int q;
    cin>>q;
    while(q--)
    {
        int l,r,ans=0;
        cin>>l>>r;
        int x=l;
        while(x/10!=0)
        {
            int y=x;
            x=0;
            while(y>0)
            {
                x+=y%10;
                y/=10;
            }
        }
        int z=r;
        while(z/10!=0)
        {
            int y=z;
            z=0;
            while(y>0)
            {
                z+=y%10;
                y/=10;
            }
        }
        ans=((r-l-(9-x)-z)/9)*45;
        ans+=45-(x*(x-1))/2;
        ans+=(z*(z+1))/2;
        cout<<ans<<'\n';
    }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
