結果

問題 No.2699 Simple Math (Returned)
ユーザー なえしらなえしら
提出日時 2024-06-24 04:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,752 KB
最終ジャッジ日時 2024-06-24 04:33:45
合計ジャッジ時間 11,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,484 KB
testcase_01 AC 511 ms
76,732 KB
testcase_02 AC 692 ms
76,120 KB
testcase_03 AC 491 ms
76,396 KB
testcase_04 AC 802 ms
76,424 KB
testcase_05 AC 660 ms
76,228 KB
testcase_06 AC 610 ms
76,240 KB
testcase_07 AC 763 ms
76,164 KB
testcase_08 AC 749 ms
76,540 KB
testcase_09 AC 754 ms
76,332 KB
testcase_10 AC 757 ms
76,612 KB
testcase_11 AC 730 ms
76,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

T = int(input())
for _ in range(T):
  N, M = map(int, input().split())
  Q, R = divmod(N, M)

  R = pow(10, R, MOD)
  if Q % 2 == 0:
    print((R - 1) % MOD)
  else:
    M = pow(10, M, MOD)
    print((M - R) % MOD)
0