結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 522 ms
76,212 KB
testcase_02 AC 678 ms
76,416 KB
testcase_03 AC 495 ms
76,032 KB
testcase_04 AC 805 ms
76,032 KB
testcase_05 AC 658 ms
76,288 KB
testcase_06 AC 599 ms
76,544 KB
testcase_07 AC 750 ms
76,032 KB
testcase_08 AC 737 ms
76,496 KB
testcase_09 AC 743 ms
76,412 KB
testcase_10 AC 738 ms
76,192 KB
testcase_11 AC 742 ms
76,800 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