結果

問題 No.2455 Numbers Dictionary
ユーザー 👑 NachiaNachia
提出日時 2023-09-02 00:09:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 68,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-11 06:30:20
合計ジャッジ時間 1,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 6 ms
6,944 KB
testcase_22 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;

i64 testcase(){
    i64 N, K; cin >> N >> K;
    // most significant digit of K
    i64 msd = 1; while(msd <= K/10) msd *= 10;
    
    i64 ans = 0;
    {
        // msd increasing
        i64 kmsd = msd;
        i64 k = K;
        while(kmsd <= N){
            ans += min(k, N+1) - kmsd;
            kmsd *= 10;
            k *= 10;
        }
    }
    {
        // msd decreasing
        i64 kmsd = msd;
        i64 k = K;
        while(true){
            kmsd /= 10;
            k /= 10;
            if(kmsd == 0) break;
            if(kmsd <= N){
                ans += min(k, N) + 1 - kmsd;
            }
        }
    }
    // K itself
    return ans + 1;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T; cin >> T;
    for(int t=0; t<T; t++) cout << testcase() << '\n';
    return 0;
}
0