Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29584 diandian Pell数列 C++ 通过 6 MS 8060 KB 323 2023-10-31 20:31:38

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { long long a[1000005] = {0, 1, 2}; for (int i = 3; i <= 1000000; ++ i) a[i] = a[i - 1] * 2 + a[i - 2]; int n; cin >> n; while (n --) { int b; cin >> b; cout << a[b] % 32767 << '\n'; } return 0; }


测评信息: