結果

問題 No.2032 Let's Write Multiples!!
ユーザー ShirotsumeShirotsume
提出日時 2022-07-14 02:55:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 414 ms / 3,000 ms
コード長 716 bytes
コンパイル時間 4,269 ms
コンパイル使用メモリ 263,344 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 08:36:46
合計ジャッジ時間 12,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 182 ms
6,940 KB
testcase_02 AC 147 ms
6,940 KB
testcase_03 AC 132 ms
6,944 KB
testcase_04 AC 228 ms
6,940 KB
testcase_05 AC 411 ms
6,944 KB
testcase_06 AC 359 ms
6,944 KB
testcase_07 AC 188 ms
6,940 KB
testcase_08 AC 288 ms
6,944 KB
testcase_09 AC 410 ms
6,944 KB
testcase_10 AC 285 ms
6,944 KB
testcase_11 AC 282 ms
6,940 KB
testcase_12 AC 266 ms
6,944 KB
testcase_13 AC 267 ms
6,944 KB
testcase_14 AC 253 ms
6,940 KB
testcase_15 AC 239 ms
6,940 KB
testcase_16 AC 232 ms
6,940 KB
testcase_17 AC 230 ms
6,940 KB
testcase_18 AC 414 ms
6,940 KB
testcase_19 AC 222 ms
6,944 KB
testcase_20 AC 160 ms
6,944 KB
testcase_21 AC 175 ms
6,940 KB
testcase_22 AC 176 ms
6,940 KB
testcase_23 AC 177 ms
6,940 KB
testcase_24 AC 179 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
using ll = long long;
#define all(x) x.begin(), x.end()
#define rep(i, n) for (int i = 0; i < n; i++)
ll f(ll r, ll k, ll c){
    ll n = r / k;
    ll ans = 0;
    ll d = 1;
    for(int i = 0; i < 9; i++){
        ll x = c * d;
        ll y = (c + 1) * d;
        d *= 10;
        ans += floor_sum(n, d, k,  d + k - x) - floor_sum(n, d, k,  d + k - y);
    }
    return ans;
}
ll solve(){
    ll l, r, k, c;
    cin >> l >> r >> k >> c;
    return f(r, k, c) - f(l - 1, k, c);
}
int main(void)
{
    int t;
    cin >> t;
    rep(i, t){
        cout << solve() << endl;
    }
    return 0;
}

0