-rw-r--r-- 259 nttcompiler-20220411/h-internal/points.inc
#include <stdlib.h> #include <assert.h> typedef int16_t int16; int16 f[N]; int main() { for (long long j = 0;j < N;++j) f[j] = 0; f[1] = 1; transform(f,1); for (long long j = 0;j < N;++j) printf("%lld\n",(long long) f[j]); return 0; }