답안 #338932

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
338932 2020-12-24T09:56:26 Z A_D Trol (COCI19_trol) C++14
30 / 50
1 ms 364 KB
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
using namespace std;
ll f(int v)
{
    if(v==0)return 0;
    ll k=v/9;
    ll ret=k*(9*10)/2;
    v%=9;
    ret+=v*(v+1)/2;
    return ret;
}
main()
{
    int q;
    cin>>q;
    while(q--)
    {
        ll l,r;
        cin>>l>>r;
        cout<<f(r)-f(l-1)<<endl;
    }
}

Compilation message

trol.cpp:15:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   15 | main()
      |      ^
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Incorrect 1 ms 364 KB Output isn't correct
4 Correct 1 ms 364 KB Output is correct
5 Incorrect 1 ms 364 KB Output isn't correct