結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,264 KB
testcase_01 AC 516 ms
76,132 KB
testcase_02 AC 671 ms
76,376 KB
testcase_03 AC 520 ms
76,112 KB
testcase_04 AC 790 ms
76,260 KB
testcase_05 AC 649 ms
76,380 KB
testcase_06 AC 549 ms
75,984 KB
testcase_07 AC 725 ms
76,804 KB
testcase_08 AC 739 ms
76,412 KB
testcase_09 AC 663 ms
76,252 KB
testcase_10 AC 709 ms
76,568 KB
testcase_11 AC 704 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

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)-1)-(pow(10, N%M, MOD)-1))%MOD
    print(ans)
0