結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | tanukidon |
提出日時 | 2018-03-22 20:10:31 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-06-24 20:22:44 |
合計ジャッジ時間 | 2,559 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,288 KB |
testcase_01 | AC | 87 ms
12,416 KB |
testcase_02 | AC | 86 ms
12,160 KB |
testcase_03 | AC | 88 ms
12,288 KB |
testcase_04 | RE | - |
testcase_05 | AC | 129 ms
14,080 KB |
testcase_06 | RE | - |
testcase_07 | AC | 87 ms
12,160 KB |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.chomp.to_i a = [] n.times do a << gets.chomp.to_i end b=[nil,0,0,0,1,1,2,4,8,15] if a.max > 9 (a.max-9).times do |i| c = 0 c = a[9+i]*2 - a[5+i] b << c end end a.each do |i| p b[i] % 17 end