結果

問題 No.2699 Simple Math (Returned)
ユーザー ducktailducktail
提出日時 2024-07-28 17:33:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,228 KB
最終ジャッジ日時 2024-07-28 17:33:11
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
17,664 KB
testcase_01 AC 773 ms
12,288 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module SimpleMathReturned
  @m = 998244353
  def solve(n, m)
    n %= 2 * m
    ans = 0
    if n <= m
      n.times do
        ans = (ans * 10 + 9) % @m
      end
    else
      (2 * m - n).times do
        ans = (ans * 10 + 9) % @m
      end
      (n - m).times do
        ans = (ans * 10) % @m
      end
    end
    ans
  end
  module_function :solve
end

t = gets.chomp.to_i
t.times do
  n, m = gets.chomp.split(/\s+/).map(&:to_i)
  puts SimpleMathReturned.solve(n, m)
end
0