結果

問題 No.657 テトラナッチ数列 Easy
ユーザー letrangerjpletrangerjp
提出日時 2018-03-02 22:30:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-06-13 03:45:01
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 82 ms
12,416 KB
testcase_04 AC 984 ms
22,656 KB
testcase_05 AC 127 ms
13,952 KB
testcase_06 AC 86 ms
12,416 KB
testcase_07 AC 84 ms
12,416 KB
testcase_08 AC 1,060 ms
23,040 KB
testcase_09 AC 116 ms
13,952 KB
testcase_10 AC 123 ms
13,952 KB
testcase_11 AC 126 ms
13,952 KB
testcase_12 AC 218 ms
15,232 KB
testcase_13 AC 1,099 ms
23,680 KB
testcase_14 AC 1,117 ms
23,552 KB
testcase_15 AC 1,118 ms
23,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$dp = [0,0,0,1]
Q = gets.to_i
N = $<.map &:to_i

(4...N.max).each{|i|
  $dp[i] = (1..4).map{|j| $dp[i - j]}.sum % 17
}
N.each{|n|
  p $dp[n-1]
}
0