結果

問題 No.2699 Simple Math (Returned)
ユーザー 👑 rin204rin204
提出日時 2024-03-29 23:33:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 4,239 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,492 KB
最終ジャッジ日時 2024-09-30 17:03:05
合計ジャッジ時間 9,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,024 KB
testcase_01 AC 509 ms
76,412 KB
testcase_02 AC 676 ms
76,264 KB
testcase_03 AC 492 ms
76,076 KB
testcase_04 AC 778 ms
76,492 KB
testcase_05 AC 641 ms
76,112 KB
testcase_06 AC 587 ms
75,944 KB
testcase_07 AC 732 ms
76,316 KB
testcase_08 AC 726 ms
76,488 KB
testcase_09 AC 740 ms
76,180 KB
testcase_10 AC 740 ms
76,428 KB
testcase_11 AC 734 ms
76,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
for _ in range(int(input())):
    n, m = map(int, input().split())
    n %= 2 * m
    x = max(0, n - m)
    ans = pow(10, x, MOD) * (pow(10, n - 2 * x, MOD) - 1) % MOD
    print(ans)
0