結果

問題 No.2699 Simple Math (Returned)
ユーザー KudeKude
提出日時 2024-03-29 21:10:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 76,560 KB
最終ジャッジ日時 2024-09-30 15:29:10
合計ジャッジ時間 8,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 450 ms
76,544 KB
testcase_02 AC 582 ms
76,416 KB
testcase_03 AC 420 ms
76,160 KB
testcase_04 AC 687 ms
76,288 KB
testcase_05 AC 560 ms
76,416 KB
testcase_06 AC 516 ms
76,416 KB
testcase_07 AC 633 ms
76,560 KB
testcase_08 AC 631 ms
76,288 KB
testcase_09 AC 643 ms
76,160 KB
testcase_10 AC 633 ms
76,032 KB
testcase_11 AC 654 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
for _ in range(int(input())):
    n, m = map(int, input().split())
    q, r = divmod(n, m)
    if q % 2 == 0:
        ans = (pow(10, r, mod) - 1) % mod
    else:
        ans = (pow(10, m, mod) - pow(10, r, mod)) % mod
    print(ans)
0