結果

問題 No.2699 Simple Math (Returned)
ユーザー detteiuudetteiuu
提出日時 2024-05-10 14:53:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 391 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-10 14:53:58
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,320 KB
testcase_01 AC 463 ms
76,544 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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