結果

問題 No.2699 Simple Math (Returned)
ユーザー sotanishysotanishy
提出日時 2024-03-29 21:32:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,236 KB
最終ジャッジ日時 2024-09-30 15:39:36
合計ジャッジ時間 5,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,892 KB
testcase_01 AC 125 ms
77,236 KB
testcase_02 AC 265 ms
76,456 KB
testcase_03 AC 115 ms
76,396 KB
testcase_04 AC 384 ms
76,136 KB
testcase_05 AC 246 ms
76,364 KB
testcase_06 AC 206 ms
76,028 KB
testcase_07 AC 328 ms
76,672 KB
testcase_08 AC 324 ms
76,288 KB
testcase_09 AC 335 ms
76,472 KB
testcase_10 AC 321 ms
76,228 KB
testcase_11 AC 323 ms
76,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

mod = 998244353
T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    N %= 2 * M
    if N <= M:
        ans = (pow(10, N, mod) - 1) % mod
    else:
        ans = (pow(10, M, mod) - pow(10, N - M, mod)) % mod
    print(ans)
0