結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,760 KB
testcase_01 AC 471 ms
76,132 KB
testcase_02 AC 672 ms
76,456 KB
testcase_03 AC 486 ms
76,068 KB
testcase_04 WA -
testcase_05 AC 628 ms
76,116 KB
testcase_06 AC 591 ms
76,116 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, N, MOD)-(pow(10, M%N, MOD)-1))%MOD
    print(ans)
0