結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | ngtkana |
提出日時 | 2020-01-31 21:43:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,256 bytes |
コンパイル時間 | 850 ms |
コンパイル使用メモリ | 112,484 KB |
実行使用メモリ | 34,160 KB |
最終ジャッジ日時 | 2024-09-17 07:32:49 |
合計ジャッジ時間 | 2,963 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,208 KB |
testcase_01 | AC | 77 ms
27,228 KB |
testcase_02 | AC | 52 ms
25,896 KB |
testcase_03 | AC | 140 ms
33,848 KB |
testcase_04 | AC | 55 ms
26,276 KB |
testcase_05 | AC | 31 ms
23,272 KB |
testcase_06 | AC | 69 ms
26,912 KB |
testcase_07 | AC | 104 ms
29,192 KB |
testcase_08 | AC | 78 ms
27,804 KB |
testcase_09 | AC | 114 ms
29,904 KB |
testcase_10 | AC | 145 ms
32,276 KB |
testcase_11 | AC | 64 ms
26,536 KB |
testcase_12 | AC | 33 ms
27,224 KB |
testcase_13 | AC | 69 ms
26,668 KB |
testcase_14 | AC | 40 ms
25,120 KB |
testcase_15 | AC | 74 ms
27,392 KB |
testcase_16 | AC | 145 ms
34,160 KB |
testcase_17 | AC | 143 ms
29,940 KB |
testcase_18 | RE | - |
testcase_19 | AC | 26 ms
25,256 KB |
testcase_20 | AC | 25 ms
23,092 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]; 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); } }