結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | ngtkana |
提出日時 | 2020-01-31 22:15:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 147 ms / 2,000 ms |
コード長 | 1,258 bytes |
コンパイル時間 | 755 ms |
コンパイル使用メモリ | 107,136 KB |
実行使用メモリ | 25,984 KB |
最終ジャッジ日時 | 2024-09-18 20:59:13 |
合計ジャッジ時間 | 2,896 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
18,920 KB |
testcase_01 | AC | 71 ms
21,120 KB |
testcase_02 | AC | 50 ms
19,712 KB |
testcase_03 | AC | 144 ms
25,600 KB |
testcase_04 | AC | 55 ms
19,968 KB |
testcase_05 | AC | 29 ms
18,852 KB |
testcase_06 | AC | 64 ms
20,864 KB |
testcase_07 | AC | 96 ms
23,168 KB |
testcase_08 | AC | 75 ms
21,504 KB |
testcase_09 | AC | 108 ms
23,680 KB |
testcase_10 | AC | 147 ms
25,984 KB |
testcase_11 | AC | 57 ms
20,224 KB |
testcase_12 | AC | 29 ms
18,840 KB |
testcase_13 | AC | 64 ms
20,608 KB |
testcase_14 | AC | 40 ms
18,844 KB |
testcase_15 | AC | 71 ms
20,992 KB |
testcase_16 | AC | 143 ms
25,856 KB |
testcase_17 | AC | 143 ms
25,984 KB |
testcase_18 | AC | 27 ms
18,944 KB |
testcase_19 | AC | 25 ms
18,688 KB |
testcase_20 | AC | 24 ms
18,688 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; public static class Program{ static int mod = 1000000007; public static void Main() { int[]np=Console.ReadLine().Split().Select(int.Parse).ToArray(); int n=np[0]; int p=np[1]; int[]a=new int[n+1]; a[0]=0; a[1]=1; for(int i=2;i<n;i++){ a[i]=Add(Mul(a[i-1],p),a[i-2]); } int sum=0; int sqsum=0; for(int i=0;i<n;i++){ AddAssign(ref sum,a[i]); AddAssign(ref sqsum,Mul(a[i],a[i])); } int ans=Mul(Add(Mul(sum,sum),sqsum),Inv(2)); Console.WriteLine(ans); } static void AddAssign(ref int x, int y){ x+=y; if(mod<=x)x-=mod; } static int Add(int x, int y){ AddAssign(ref x, y); return x; } static int Mul(int x, int y){ return (int)((long)x*y%mod); } static void MulAssign(ref int x, int y){ x=Mul(x,y); } static int Pow(int x, long y){ int ans=1; for(;y>0;y/=2){ if(y%2==1)MulAssign(ref ans,x); MulAssign(ref x,x); } return ans; } static int Inv(int x){ return Pow(x,mod-2); } }