| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146769 | 李明秦 | 吃巧克力 | C++ | Wrong Answer | 0 MS | 264 KB | 162 | 2026-01-30 16:55:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a[1001]={1,2}; for(int i=2;i<n;i++){ a[i]=a[i-1]+a[i-2]; }cout<<a[n-1]; return 0; }
------Input------
19
------Answer-----
6765
------Your output-----
0