結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー bluemeganebluemegane
提出日時 2018-09-12 16:40:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 110,476 KB
実行使用メモリ 64,220 KB
最終ジャッジ日時 2024-06-27 03:47:47
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,084 KB
testcase_01 AC 24 ms
23,776 KB
testcase_02 AC 26 ms
26,000 KB
testcase_03 AC 25 ms
25,688 KB
testcase_04 AC 25 ms
23,944 KB
testcase_05 AC 25 ms
21,944 KB
testcase_06 AC 25 ms
26,004 KB
testcase_07 AC 25 ms
23,776 KB
testcase_08 AC 26 ms
23,916 KB
testcase_09 AC 26 ms
21,684 KB
testcase_10 AC 45 ms
30,872 KB
testcase_11 AC 119 ms
62,004 KB
testcase_12 AC 118 ms
64,220 KB
testcase_13 AC 114 ms
60,316 KB
testcase_14 AC 117 ms
61,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = long.Parse(line[0]);
        var m = long.Parse(line[1]);
        Console.WriteLine(getAns(n, m));
    }
    public static long getAns(long n, long m)
    {
        var a = new long[n + 1];
        a[2] = 1;
        for (int i = 3; i <= n; i++)
            a[i] = (a[i - 1] + a[i - 2]) % m;
        return a[n];
    }
}
0