結果

問題 No.1252 数字根D
ユーザー chocoruskchocorusk
提出日時 2020-10-09 21:37:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 1,135 ms
コンパイル使用メモリ 122,580 KB
最終ジャッジ日時 2025-01-15 04:11:11
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
using ll=long long;
typedef pair<int, int> P;
ll solve(ll d, ll a){
    if(a<=0) return 0;
    ll q=a/(d-1);
    ll r=a%(d-1);
    return q*d*(d-1)/2+r*(r+1)/2;
}
ll solve(ll d, ll a, ll b){
    return solve(d, b)-solve(d, a-1);
}
int main()
{
    int t; cin>>t;
    while(t--){
        ll d, a, b; cin>>d>>a>>b;
        cout<<solve(d, a, b)<<endl;
    }
    return 0;
}
0