/ Vijos /

记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:17:13: error: 'dp' was not declared in this scope
             dp[i][j] = dp[i-1][j-1]+dp[i-1][j+1];
             ^~
/in/foo.cc:19:9: error: 'dp' was not declared in this scope
         dp[i][1] = dp[i-1][2]+dp[i-1][n];
         ^~
/in/foo.cc:22:11: error: 'dp' was not declared in this scope
     cout<<dp[m][1];
           ^~

信息

递交者
类型
递交
题目
P1485 传球游戏
语言
C++
递交时间
2020-11-04 20:27:48
评测时间
2020-11-04 21:11:01
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes