QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#21263 | #2817. 鸽鸽的分割 | glory_to_the_qy# | AC ✓ | 3ms | 3660kb | C++20 | 271b | 2022-03-04 14:15:42 | 2022-05-08 02:48:35 |
Judging History
answer
#include <bits/stdc++.h>
long long f[10005];
int main() {
int x;
while (std::cin >> x) {
f[0] = 1;
f[1] = 1;
f[2] = 2;
for (int i = 3; i <= x; ++i)
f[i] = f[i - 1] + i - 1 + (i - 1) * (i - 2) * (i - 3) / 6;
std::cout << f[x] << '\n';
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 3ms
memory: 3660kb
input:
0 1 2 3 4 5 6 7 8 9 10 20 30 40 50 60 61 62 63 64
output:
1 1 2 4 8 16 31 57 99 163 256 5036 27841 92171 231526 489406 523686 559737 597619 637393
result:
ok 20 lines