結果

問題 No.2699 Simple Math (Returned)
ユーザー vwxyzvwxyz
提出日時 2024-07-17 07:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2024-07-17 07:42:51
合計ジャッジ時間 9,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,900 KB
testcase_01 AC 529 ms
76,360 KB
testcase_02 AC 685 ms
75,660 KB
testcase_03 AC 528 ms
76,048 KB
testcase_04 AC 814 ms
76,196 KB
testcase_05 AC 646 ms
76,456 KB
testcase_06 AC 619 ms
76,260 KB
testcase_07 AC 735 ms
76,652 KB
testcase_08 AC 770 ms
76,192 KB
testcase_09 AC 737 ms
76,128 KB
testcase_10 AC 763 ms
76,044 KB
testcase_11 AC 771 ms
76,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
mod=998244353
for t in range(T):
    N,M=map(int,input().split())
    c,r=divmod(N,M)
    if c%2==0:
        ans=(pow(10,r,mod)-1)%mod
    else:
        ans=(-pow(10,r,mod)+pow(10,M,mod))%mod
    print(ans)
0