結果

問題 No.2699 Simple Math (Returned)
ユーザー ButterflvButterflv
提出日時 2024-05-01 18:28:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 773 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-05-01 18:28:26
合計ジャッジ時間 9,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,872 KB
testcase_01 AC 515 ms
76,304 KB
testcase_02 AC 672 ms
76,084 KB
testcase_03 AC 487 ms
75,956 KB
testcase_04 AC 773 ms
76,072 KB
testcase_05 AC 680 ms
76,272 KB
testcase_06 AC 611 ms
76,428 KB
testcase_07 AC 753 ms
76,672 KB
testcase_08 AC 753 ms
76,232 KB
testcase_09 AC 730 ms
76,964 KB
testcase_10 AC 764 ms
76,456 KB
testcase_11 AC 734 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
MOD=998244353
for i in range(T):
  N,M=map(int, input().split())
  if N<=M:
    print((pow(10, N, MOD)-1)%MOD)
    continue
  N__M=N//M
  if N__M%2==0:
    print((pow(10, N%M, MOD)-1)%MOD)
  else:
    print(((-pow(10, N%M, MOD)-1)+(pow(10, M, MOD)+1))%MOD)
0