結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー cielciel
提出日時 2017-06-13 19:30:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 11,892 KB
実行使用メモリ 16,176 KB
最終ジャッジ日時 2023-10-24 21:49:24
合計ジャッジ時間 5,086 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
16,080 KB
testcase_01 AC 87 ms
16,080 KB
testcase_02 AC 81 ms
16,080 KB
testcase_03 AC 80 ms
16,080 KB
testcase_04 AC 81 ms
16,080 KB
testcase_05 AC 80 ms
16,080 KB
testcase_06 AC 79 ms
16,080 KB
testcase_07 AC 81 ms
16,080 KB
testcase_08 AC 83 ms
16,080 KB
testcase_09 AC 95 ms
16,176 KB
testcase_10 AC 222 ms
16,176 KB
testcase_11 AC 770 ms
16,176 KB
testcase_12 AC 787 ms
16,176 KB
testcase_13 AC 768 ms
16,176 KB
testcase_14 AC 774 ms
16,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map(&:to_i)
a,b=0,1
(n-1).times{a,b=(a+b)%m,a}
p a
0