/ Randle /

记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Accepted 1ms 196.0 KiB
#2 Accepted 1ms 204.0 KiB
#3 Accepted 1ms 200.0 KiB
#4 Runtime Error 1ms 204.0 KiB
#5 Runtime Error 1ms 200.0 KiB
#6 Runtime Error 1ms 208.0 KiB
#7 Runtime Error 1ms 204.0 KiB
#8 Runtime Error 1ms 208.0 KiB
#9 Runtime Error 1ms 204.0 KiB
#10 Runtime Error 1ms 204.0 KiB

代码

#include <iostream>
using namespace std;
#define NUM 1000000007
int main(){
    int n;
    cin>>n;
    long long temp[n+1000];
    temp[0]=0;temp[1]=1;temp[2]=2;
    for(int i=3;i<=n;i++)
        temp[i] = ((temp[i-1]+temp[i-2])%NUM)%NUM;
    cout<<temp[n]<<endl;
    return 0;
}

信息

递交者
类型
递交
题目
上楼梯(数据原创)
题目数据
下载
语言
C++
递交时间
2020-01-10 17:53:35
评测时间
2020-01-10 17:53:35
评测机
分数
30
总耗时
14ms
峰值内存
208.0 KiB