結果

問題 No.2600 Avator Height
ユーザー ducktailducktail
提出日時 2024-08-15 17:44:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-08-15 17:44:19
合計ジャッジ時間 16,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
15,104 KB
testcase_01 AC 443 ms
15,488 KB
testcase_02 AC 489 ms
15,616 KB
testcase_03 AC 445 ms
15,360 KB
testcase_04 AC 452 ms
15,360 KB
testcase_05 AC 463 ms
15,488 KB
testcase_06 AC 472 ms
15,616 KB
testcase_07 AC 434 ms
15,360 KB
testcase_08 AC 463 ms
15,488 KB
testcase_09 AC 443 ms
15,616 KB
testcase_10 AC 465 ms
15,488 KB
testcase_11 AC 505 ms
15,616 KB
testcase_12 AC 501 ms
15,360 KB
testcase_13 AC 440 ms
15,488 KB
testcase_14 AC 444 ms
15,360 KB
testcase_15 AC 503 ms
15,360 KB
testcase_16 AC 463 ms
15,616 KB
testcase_17 AC 505 ms
15,360 KB
testcase_18 AC 440 ms
15,488 KB
testcase_19 AC 430 ms
15,360 KB
testcase_20 AC 467 ms
15,360 KB
testcase_21 AC 442 ms
15,360 KB
testcase_22 AC 465 ms
15,360 KB
testcase_23 AC 444 ms
15,488 KB
testcase_24 AC 390 ms
15,616 KB
testcase_25 AC 471 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class AvatorHeight
  def initialize
    @m = 998244353
    @rt = Array.new(200001, 0)
    @et = Array.new(200001, 0)
    @rt[1] = 1
    @rt[2] = 1
    @et[1] = 1
    @et[2] = 3
    (3 .. 200000).each do |i|
      @rt[i] = (@rt[i - 1] + @rt[i - 2]) % @m
      @et[i] = (@et[i - 1] + @et[i - 2]) % @m
    end
  end
  def solve(n)
    (5 * @rt[n] * @rt[n] - @et[n] * @et[n]) % @m
  end
end
  

q = gets.chomp.to_i
ah = AvatorHeight.new

q.times do
  n = gets.chomp.to_i
  puts ah.solve(n)
end
0