結果

問題 No.194 フィボナッチ数列の理解(1)
ユーザー mbanmban
提出日時 2017-05-01 09:49:49
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,389 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 114,156 KB
実行使用メモリ 29,044 KB
最終ジャッジ日時 2024-09-14 01:49:06
合計ジャッジ時間 3,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,272 KB
testcase_01 AC 28 ms
25,228 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
28,268 KB
testcase_21 AC 65 ms
28,644 KB
testcase_22 AC 59 ms
28,256 KB
testcase_23 AC 37 ms
23,864 KB
testcase_24 AC 50 ms
26,856 KB
testcase_25 AC 48 ms
26,636 KB
testcase_26 AC 48 ms
24,628 KB
testcase_27 AC 51 ms
26,640 KB
testcase_28 AC 38 ms
28,116 KB
testcase_29 AC 60 ms
28,040 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private long K;
    private int[] A;

    private const int Mod = (int)1e9 + 7;

    private void Scan()
    {
        string[] s = Console.ReadLine().Split(' ');
        N = int.Parse(s[0]);
        K = long.Parse(s[1]);
        A = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
    }

    public void Solve()
    {
        Scan();
        if (K <= 1000000)
        {
            Easy();
        }
        else
        {
            Hard();
        }
    }

    private void Easy()
    {
        int s = 0;
        int sum = 0;
        var dp = new int[K + 1];
        for(int i = 0; i < N; i++)
        {
            dp[i + 1] = A[i];
            sum += A[i];
        }
        sum %= Mod;
        for (int i = N + 1; i <= K; i++)
        {
            dp[i] = sum;
            sum *= 2;
            sum -= dp[i - N];
            while (sum < 0)
            {
                sum += Mod;
            }
            sum %= Mod;
        }

        foreach(var i in dp)
        {
            s += i;
            s %= Mod;
        }

        Console.WriteLine($"{dp[K]} {s}");
    }

    private void Hard()
    {

    }
}

0