結果

問題 No.2699 Simple Math (Returned)
ユーザー tassei903tassei903
提出日時 2024-03-29 22:04:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-09-30 16:00:13
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 186 ms
78,848 KB
testcase_02 AC 335 ms
77,056 KB
testcase_03 AC 166 ms
78,080 KB
testcase_04 WA -
testcase_05 AC 309 ms
77,056 KB
testcase_06 AC 261 ms
77,184 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    if n < m:
        print((pow(10, n, mod)-1))
    else:
        print((pow(10, m, mod)-pow(10, n-m, mod)))
0