結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | 37zigen |
提出日時 | 2018-04-21 07:55:06 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
AC
|
実行時間 | 434 ms / 2,000 ms |
コード長 | 479 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 30,976 KB |
実行使用メモリ | 392,960 KB |
最終ジャッジ日時 | 2024-06-27 05:22:30 |
合計ジャッジ時間 | 3,254 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
80,256 KB |
testcase_01 | AC | 34 ms
80,384 KB |
testcase_02 | AC | 34 ms
80,340 KB |
testcase_03 | AC | 34 ms
80,256 KB |
testcase_04 | AC | 34 ms
80,384 KB |
testcase_05 | AC | 34 ms
80,256 KB |
testcase_06 | AC | 33 ms
80,268 KB |
testcase_07 | AC | 35 ms
80,256 KB |
testcase_08 | AC | 35 ms
81,092 KB |
testcase_09 | AC | 43 ms
86,612 KB |
testcase_10 | AC | 121 ms
142,848 KB |
testcase_11 | AC | 434 ms
392,960 KB |
testcase_12 | AC | 432 ms
392,852 KB |
testcase_13 | AC | 404 ms
392,704 KB |
testcase_14 | AC | 419 ms
392,832 KB |
ソースコード
module mdl integer*8::f(10000000) contains recursive function fib(n,m)result(res) integer*8::n,m,res if(f(n)/=-1)then res=f(n) else res=mod(fib(n-1,m)+fib(n-2,m),m) f(n)=res end if end function end module program main use mdl implicit none integer*8::i,j,k,n,m read(*,*)n,m f(1)=0 f(2)=mod(1,m) do i=3,size(f) f(i)=-1 end do print*,fib(n,m) end program