結果

問題 No.2032 Let's Write Multiples!!
ユーザー drken1215drken1215
提出日時 2022-12-26 13:33:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 759 ms / 3,000 ms
コード長 1,304 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 200,828 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-30 23:35:48
合計ジャッジ時間 14,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 261 ms
6,816 KB
testcase_02 AC 202 ms
6,940 KB
testcase_03 AC 169 ms
6,944 KB
testcase_04 AC 354 ms
6,940 KB
testcase_05 AC 755 ms
6,940 KB
testcase_06 AC 642 ms
6,948 KB
testcase_07 AC 300 ms
6,940 KB
testcase_08 AC 472 ms
6,944 KB
testcase_09 AC 759 ms
6,944 KB
testcase_10 AC 499 ms
6,944 KB
testcase_11 AC 490 ms
6,940 KB
testcase_12 AC 506 ms
6,944 KB
testcase_13 AC 512 ms
6,944 KB
testcase_14 AC 453 ms
6,944 KB
testcase_15 AC 358 ms
6,944 KB
testcase_16 AC 353 ms
6,940 KB
testcase_17 AC 357 ms
6,940 KB
testcase_18 AC 755 ms
6,944 KB
testcase_19 AC 335 ms
6,940 KB
testcase_20 AC 200 ms
6,940 KB
testcase_21 AC 253 ms
6,940 KB
testcase_22 AC 253 ms
6,944 KB
testcase_23 AC 253 ms
6,944 KB
testcase_24 AC 254 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// sum_{i=0}^{n-1} floor((a * i + b) / m)
// O(log(n + m + a + b))
long long floor_sum(long long n, long long a, long long b, long long m) {
    if (n == 0) return 0;
    long long res = 0;
    if (a >= m) {
        res += n * (n - 1) * (a / m) / 2;
        a %= m;
    }
    if (b >= m) {
        res += n * (b / m);
        b %= m;
    }
    if (a == 0) return res;
    long long ymax = (a * n + b) / m, xmax = ymax * m - b;
    if (ymax == 0) return res;
    res += (n - (xmax + a - 1) / a) * ymax;
    res += floor_sum(ymax, m, (a - xmax % a) % a, a);
    return res;
}

int main() {
    int CASE;
    cin >> CASE;
    while (CASE--) {
        long long L, R, K, C;
        cin >> L >> R >> K >> C;

        // 0 以上 N 以下の整数についての答えを求める
        auto solve = [&](long long N) -> long long {
            long long res = 0;
            long long beki = 1;
            for (int k = 0; k <= 10; ++k) {
                long long upper = floor_sum(N/K+1, K, beki*(10-C), beki*10);
                long long lower = floor_sum(N/K+1, K, beki*(9-C), beki*10);
                res += upper - lower;
                beki *= 10;
            }
            return res;
        };
        cout << solve(R) - solve(L-1) << endl;
    }
}
0