結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | otamay6 |
提出日時 | 2024-03-05 01:16:30 |
言語 | Julia (1.10.2) |
結果 |
AC
|
実行時間 | 1,666 ms / 2,000 ms |
コード長 | 917 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 315,660 KB |
最終ジャッジ日時 | 2024-10-01 17:48:46 |
合計ジャッジ時間 | 26,621 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,562 ms
303,120 KB |
testcase_01 | AC | 1,580 ms
304,216 KB |
testcase_02 | AC | 1,602 ms
304,776 KB |
testcase_03 | AC | 1,666 ms
304,772 KB |
testcase_04 | AC | 1,608 ms
304,988 KB |
testcase_05 | AC | 1,612 ms
303,420 KB |
testcase_06 | AC | 1,621 ms
305,340 KB |
testcase_07 | AC | 1,568 ms
303,768 KB |
testcase_08 | AC | 1,579 ms
315,660 KB |
testcase_09 | AC | 1,577 ms
305,052 KB |
testcase_10 | AC | 1,584 ms
304,080 KB |
testcase_11 | AC | 1,610 ms
302,992 KB |
testcase_12 | AC | 1,618 ms
303,308 KB |
testcase_13 | AC | 1,646 ms
303,448 KB |
testcase_14 | AC | 1,579 ms
303,656 KB |
ソースコード
module ModIntModule export ModInt,+,-,*,/ struct ModInt{n} <: Integer k::UInt64 ModInt{n}(k::Integer) where{n} = new(mod(k,n)) end import Base: +,-,*,/ +(x::ModInt{n}, y::ModInt{n}) where{n} = ModInt{n}(x.k + y.k); -(x::ModInt{n}, y::ModInt{n}) where{n} = ModInt{n}(n + x.k - y.k); *(x::ModInt{n}, y::ModInt{n}) where{n} = ModInt{n}(x.k * y.k); /(x::ModInt{n}, y::ModInt{n}) where{n} = ModInt{n}(x.k * invmod(y.k, n)); end using .ModIntModule Base.show(io::IO, a::ModInt{n}) where {n} = show(io, a.k) Base.promote_rule(::Type{ModInt{n}}, ::Type{Int}) where {n} = ModInt{n} Base.convert(::Type{ModInt{n}}, x::Int) where {n} = ModInt{n}(x) const modint998244353 = ModInt{998244353} const modint1000000007 = ModInt{1000000007} using Printf n, m = parse.(Int32, split(readline())) a = ModInt{m}.([1 1;1 0]) f = ModInt{m}.([1;0]) f = (a^(n-2))*f @printf(stdout, "%d\n", f[1].k)