結果

問題 No.554 recurrence formula
ユーザー ueyukiueyuki
提出日時 2017-09-22 04:38:08
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-11-08 19:56:40
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
17,408 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 92 ms
12,160 KB
testcase_10 AC 189 ms
12,160 KB
testcase_11 AC 1,037 ms
12,032 KB
testcase_12 AC 777 ms
12,032 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i

a = [0, 1]

2.upto(n) do |i|
  item = 0
  if i % 2 == 0
    1.upto(i-1) do |k|
      (k % 2 == 1) ? item += a[k] : next
    end
  else
    1.upto(i-1) do |k|
      (k % 2 == 0) ? item += a[k] : next
    end
  end
  a << (i * item) % (10 ** 9 + 7)
end

puts a[-1]
0