initial commit

This commit is contained in:
zsq259
2023-10-19 22:35:38 +08:00
commit 9a3bc626ad
61 changed files with 49217 additions and 0 deletions

26
data/Integer2/6.cpp Normal file
View File

@ -0,0 +1,26 @@
/*
Time: 2021-10-21
Test: operator=
std Time: 0.01s
Time Limit: 1.00s
*/
#include "int2048.h"
sjtu::int2048 f[2000], g[2000], h[2000];
int main()
{
h[1] = (g[1] = f[1] = 1) + 233;
for (int i = 2; i <= 1000; i++)
h[i] = (g[i] = f[i] = f[i - 1] + f[i - 2]) + 233;
for (int i = 1; i <= 1000; i++)
std::cout << f[i] << '\n';
for (int i = 1; i <= 1000; i++)
std::cout << g[i] << '\n';
for (int i = 1; i <= 1000; i++)
std::cout << h[i] << '\n';
}