結果

問題 No.2699 Simple Math (Returned)
ユーザー YU HiroseYU Hirose
提出日時 2024-07-12 12:46:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 227 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-12 12:46:53
合計ジャッジ時間 27,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 1,374 ms
12,032 KB
testcase_02 TLE -
testcase_03 AC 1,403 ms
12,160 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,706 ms
12,032 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
for _ in [0]*int(input()):
    n, m = map(int, input().split())
    n %= m * 2
    if n <= m:
        print((pow(10, n, mod) - 1) % mod)
    else:
        print((pow(10, m*2, mod) - 1) * pow(10, n-m, mod) % mod)
0