結果
問題 | No.1252 数字根D |
ユーザー |
|
提出日時 | 2020-10-09 23:22:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 1,539 bytes |
コンパイル時間 | 2,596 ms |
コンパイル使用メモリ | 192,964 KB |
最終ジャッジ日時 | 2025-01-15 05:50:05 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 14 |
ソースコード
/*** author: yuji9511 ***/#include <bits/stdc++.h>// #include <atcoder/all>// using namespace atcoder;using namespace std;using ll = long long;using lpair = pair<ll, ll>;const ll MOD = 1e9+7;const ll INF = 1e18;#define rep(i,m,n) for(ll i=(m);i<(n);i++)#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};void print() {}template <class H,class... T>void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}#define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << "\n"void solve(){ll d,A,B;cin >> d >> A >> B;ll n = B - A + 1;if(A == 0){if(B == 0){print(0);return;}else{A++;n--;}}ll sum = A;while(true){ll tmp = sum;ll r = 0;while(tmp > 0){r += tmp % d;tmp /= d;}sum = r;if(sum < d) break;}ll v1 = d * (d-1) / 2;ll ans = v1 * (n / (d-1));ll amari = n % (d-1);if(amari <= (d - sum)){ans += amari * (amari-1) / 2 + amari * sum;}else{ll num = d - sum;ans += num * (num-1) / 2 + num * sum;amari -= num;ans += amari * (amari+1) / 2;}// rep(i,0,(n % (d-1))){// ans += (sum-1 + i) % (d-1) + 1;// }print(ans);}int main(){cin.tie(0);ios::sync_with_stdio(false);ll T;cin >> T;while(T--) solve();}