結果

問題 No.2699 Simple Math (Returned)
ユーザー KeeKee
提出日時 2024-03-30 17:24:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-09-30 17:37:24
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,528 KB
testcase_01 AC 178 ms
78,848 KB
testcase_02 AC 326 ms
77,284 KB
testcase_03 AC 167 ms
78,720 KB
testcase_04 AC 405 ms
77,056 KB
testcase_05 AC 281 ms
77,184 KB
testcase_06 AC 232 ms
77,440 KB
testcase_07 AC 359 ms
76,928 KB
testcase_08 AC 360 ms
77,312 KB
testcase_09 AC 361 ms
77,312 KB
testcase_10 AC 364 ms
77,056 KB
testcase_11 AC 369 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3

import bisect
import collections
import heapq
import itertools
import math
import os
import sys


MOD = 998244353


def main():
    for _ in range(read_int()):
        n, m = read_ints()
        n %= 2 * m
        if n <= m:
            print((pow(10, n, MOD) - 1) % MOD)
        else:
            b = (pow(10, m, MOD) + 1) % MOD
            print((b - 1 - pow(10, n - m, MOD)) % MOD)


###############################################################################

DEBUG = 'DEBUG' in os.environ


def inp():
    return sys.stdin.readline().rstrip()


def read_int():
    return int(inp())


def read_ints():
    return [int(e) for e in inp().split()]


def list2d(d1, d2, init=None):
    return [[init] * d2 for _ in range(d1)]


def list3d(d1, d2, d3, init=None):
    return [[[init] * d3 for _ in range(d2)] for _ in range(d1)]


def list4d(d1, d2, d3, d4, init=None):
    return [[[[init] * d4 for _ in range(d3)] for _ in range(d2)]
            for _ in range(d1)]


def debug(fmt, *args):
    if DEBUG:
        if args:
            print(fmt.format(*args), file=sys.stderr)
        else:
            print(fmt, file=sys.stderr)


if __name__ == '__main__':
    main()
0