結果

問題 No.2699 Simple Math (Returned)
ユーザー Meso MesoMeso Meso
提出日時 2024-08-20 09:18:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-08-20 09:18:33
合計ジャッジ時間 9,596 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,956 KB
testcase_01 AC 465 ms
76,012 KB
testcase_02 AC 678 ms
76,188 KB
testcase_03 AC 468 ms
76,060 KB
testcase_04 AC 770 ms
76,600 KB
testcase_05 AC 662 ms
76,308 KB
testcase_06 AC 580 ms
76,532 KB
testcase_07 AC 719 ms
76,312 KB
testcase_08 AC 693 ms
76,252 KB
testcase_09 AC 717 ms
76,200 KB
testcase_10 AC 763 ms
76,244 KB
testcase_11 AC 700 ms
76,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

t = int(input())

ans = 0
for i in range(t):
    n, m = map(int, input().split())
    n %= m*2
    if n <= m:
        print((pow(10, n, mod) - 1) % mod)
    else:
        print((pow(10, m*2-n, mod) - 1) * pow(10, n - m, mod) % mod)
0