递归
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
Description
土拨鼠小北写了一个递归函数:
int f(int i,int j)
{
if(i==n) return a[j];
else return (f(i+1,j)+f(i+1,j+1))%1000000007;
}
其中, 是一个int类型的变量, 是一个int类型的数组。 现在,给你 和 数组,请你求出 的值。
Format
Input
第一行一个正整数,。第二行 个数,表示 数组。
Output
的值。
Samples
4
1 3 2 9
25
5
18 76 34 98 20
938
Limitation
样例1解释:
f(1,1)=25
f(2,1)=9 f(2,2)=16
f(3,1)=4 f(3,2)=5 f(3,3)=11
f(4,1)=1 f(4,2)=3 f(4,3)=2 f(4,4)=9
- 请注意读入效率。
- ,
1s, 1024KiB for each test case.
[北辰杯 North-Star-Cup] 三月月赛预热赛(北辰妇女节杯)
- Status
- Done
- Rule
- Ledo
- Problem
- 6
- Start at
- 2023-3-2 18:00
- End at
- 2023-3-17 18:00
- Duration
- 360 hour(s)
- Host
- Partic.
- 45