結果

問題 No.2699 Simple Math (Returned)
ユーザー detteiuudetteiuu
提出日時 2024-05-10 15:04:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-05-10 15:04:20
合計ジャッジ時間 8,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,368 KB
testcase_01 AC 473 ms
76,536 KB
testcase_02 AC 619 ms
76,172 KB
testcase_03 AC 450 ms
76,448 KB
testcase_04 WA -
testcase_05 AC 590 ms
76,480 KB
testcase_06 AC 550 ms
76,168 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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