結果
問題 | No.1252 数字根D |
ユーザー | yuji9511 |
提出日時 | 2020-10-09 23:22:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,539 bytes |
コンパイル時間 | 2,172 ms |
コンパイル使用メモリ | 200,840 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 14:17:22 |
合計ジャッジ時間 | 2,892 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
/*** 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(); }