結果

問題 No.2699 Simple Math (Returned)
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-29 16:48:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 4,913 ms
コンパイル使用メモリ 309,380 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 16:49:01
合計ジャッジ時間 11,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 322 ms
6,820 KB
testcase_02 AC 414 ms
6,820 KB
testcase_03 AC 329 ms
6,816 KB
testcase_04 AC 432 ms
6,820 KB
testcase_05 AC 418 ms
6,820 KB
testcase_06 AC 386 ms
6,816 KB
testcase_07 AC 422 ms
6,820 KB
testcase_08 AC 449 ms
6,816 KB
testcase_09 AC 417 ms
6,816 KB
testcase_10 AC 422 ms
6,816 KB
testcase_11 AC 461 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using lint = long long;
using mint = atcoder::modint998244353;

int main() {
    int t;
    cin >> t;
    while (t--) {
        lint n, m;
        cin >> n >> m;
        n %= 2 * m;
        mint ans;
        if (n <= m) {
            ans = mint(10).pow(n) - mint(1);
        } else {
            ans = mint(10).pow(m) - mint(10).pow(n - m);
        }
        cout << ans.val() << endl;
    }
}
0