結果

問題 No.2699 Simple Math (Returned)
ユーザー 寝癖寝癖
提出日時 2024-03-29 21:36:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,656 KB
最終ジャッジ日時 2024-09-30 15:42:58
合計ジャッジ時間 9,016 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 475 ms
76,160 KB
testcase_02 AC 642 ms
76,152 KB
testcase_03 AC 467 ms
76,148 KB
testcase_04 AC 780 ms
76,032 KB
testcase_05 AC 617 ms
76,032 KB
testcase_06 AC 560 ms
76,188 KB
testcase_07 AC 706 ms
76,032 KB
testcase_08 AC 699 ms
76,656 KB
testcase_09 AC 704 ms
76,288 KB
testcase_10 AC 692 ms
76,244 KB
testcase_11 AC 694 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
mod = 998244353
for _ in range(T):
    N, M = map(int, input().split())
    p, q = divmod(N, M)
    if p % 2 == 1:
        print((pow(10, M, mod)-pow(10, q, mod))%mod)
    else:
        print((pow(10, q, mod)-1)%mod)
0