結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-03-17 09:20:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 3,167 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 108,196 KB
実行使用メモリ 22,772 KB
最終ジャッジ日時 2023-08-20 02:39:40
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
20,636 KB
testcase_01 AC 55 ms
20,620 KB
testcase_02 AC 55 ms
22,684 KB
testcase_03 AC 54 ms
22,732 KB
testcase_04 AC 53 ms
20,792 KB
testcase_05 AC 53 ms
20,660 KB
testcase_06 AC 53 ms
20,688 KB
testcase_07 AC 52 ms
20,688 KB
testcase_08 AC 53 ms
20,724 KB
testcase_09 AC 54 ms
22,772 KB
testcase_10 AC 53 ms
22,696 KB
testcase_11 AC 53 ms
22,676 KB
testcase_12 AC 52 ms
22,692 KB
testcase_13 AC 52 ms
22,732 KB
testcase_14 AC 51 ms
20,700 KB
testcase_15 AC 51 ms
22,680 KB
testcase_16 AC 51 ms
18,688 KB
testcase_17 AC 53 ms
20,668 KB
testcase_18 AC 53 ms
22,732 KB
testcase_19 AC 53 ms
22,712 KB
testcase_20 AC 51 ms
20,684 KB
testcase_21 AC 52 ms
20,632 KB
testcase_22 AC 52 ms
20,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
static class Program{
	const int mod=(int)1e9+7;
	const double eps=1e-11;
	static void Main(){
		Sc sc=new Sc();
		long n=sc.L;
		var g=new long[][]{new long[]{1,1},new long[]{1,0}};
		var b=new long[][]{new long[]{0},new long[]{1}};
		var c=Mp(b,g,n+1);
		Console.WriteLine("{0}",(c[0][0]*c[1][0])%mod);
	}
	static long[][] Mp(long[][] r,long[][] x,long e){
		while(e>0){
			if((e&1)>0){r=Mm(x,r);}
			x=Mm(x,x);
			e>>=1;
		}
		return r;
	}
	static long[][] Mm(long[][] a,long[][] b){
		var q=new long[a.Length][];
		for(int j=0;j<a.Length;j++){
			q[j]=new long[b[0].Length];
			for(int i=0;i<b[0].Length;i++){
				for(int k=0;k<a.Length;k++){q[j][i]=(q[j][i]+a[j][k]*b[k][i])%mod;}
			}
		}
		return q;
	}
}

public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),int.Parse);}
	public int[] Ia3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),long.Parse);}
	public long[] La3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),double.Parse);}
	public double[] Da3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0