結果

問題 No.657 テトラナッチ数列 Easy
ユーザー maimai
提出日時 2018-03-02 22:25:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-06-13 03:23:19
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
22,400 KB
testcase_01 AC 250 ms
22,400 KB
testcase_02 AC 249 ms
22,400 KB
testcase_03 AC 246 ms
22,528 KB
testcase_04 AC 247 ms
22,400 KB
testcase_05 AC 291 ms
23,040 KB
testcase_06 AC 249 ms
22,400 KB
testcase_07 AC 250 ms
22,400 KB
testcase_08 AC 248 ms
22,400 KB
testcase_09 AC 292 ms
23,168 KB
testcase_10 AC 299 ms
23,168 KB
testcase_11 AC 300 ms
22,912 KB
testcase_12 AC 299 ms
22,912 KB
testcase_13 AC 298 ms
22,912 KB
testcase_14 AC 302 ms
23,040 KB
testcase_15 AC 303 ms
22,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

NMAX = 1e6.to_i

t = [0,0,0,1]

NMAX.times do |i|
    t.push (t[-1]+t[-2]+t[-3]+t[-4])%17
end

gets.to_i.times do
    n = gets.to_i
    p t[n-1]
end

0