結果

問題 No.657 テトラナッチ数列 Easy
ユーザー cielciel
提出日時 2017-11-26 20:00:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 90 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-05-05 13:50:59
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,800 KB
testcase_01 AC 95 ms
12,928 KB
testcase_02 AC 91 ms
12,928 KB
testcase_03 AC 91 ms
12,672 KB
testcase_04 WA -
testcase_05 AC 137 ms
13,568 KB
testcase_06 AC 93 ms
12,672 KB
testcase_07 AC 93 ms
12,800 KB
testcase_08 WA -
testcase_09 AC 128 ms
13,568 KB
testcase_10 AC 138 ms
13,696 KB
testcase_11 AC 130 ms
13,440 KB
testcase_12 AC 140 ms
13,696 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T=[0,0,0,0,1]
99999.times{T<<(T[-4]+T[-3]+T[-2]+T[-1])%17}
gets.to_i.times{p T[gets.to_i]}
0