結果

問題 No.2699 Simple Math (Returned)
ユーザー YU HiroseYU Hirose
提出日時 2024-07-12 12:46:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-07-12 12:46:57
合計ジャッジ時間 8,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,812 KB
testcase_01 AC 424 ms
78,124 KB
testcase_02 AC 580 ms
78,008 KB
testcase_03 AC 453 ms
77,624 KB
testcase_04 WA -
testcase_05 AC 573 ms
77,896 KB
testcase_06 AC 504 ms
77,704 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

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