結果

問題 No.2699 Simple Math (Returned)
ユーザー tassei903tassei903
提出日時 2024-03-29 22:05:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-09-30 16:00:24
合計ジャッジ時間 5,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 188 ms
78,592 KB
testcase_02 AC 338 ms
76,672 KB
testcase_03 AC 167 ms
78,336 KB
testcase_04 AC 449 ms
76,800 KB
testcase_05 AC 310 ms
76,928 KB
testcase_06 AC 259 ms
76,928 KB
testcase_07 AC 391 ms
77,056 KB
testcase_08 AC 390 ms
76,800 KB
testcase_09 AC 392 ms
76,800 KB
testcase_10 AC 388 ms
77,056 KB
testcase_11 AC 387 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
for _ in range(ni()):
    n, m = na()
    n %= 2*m
    ans = 0
    if n < m:
        print((pow(10, n, mod)-1)%mod)
    else:
        print((pow(10, m, mod)-pow(10, n-m, mod))%mod)
0