This documentation is automatically generated by online-judge-tools/verification-helper
View the Project on GitHub maspypy/library
#include "poly/count_terms.hpp"
#pragma once template<typename mint> int count_terms(const vc<mint>& f){ int t = 0; FOR(i, len(f)) if(f[i] != mint(0)) ++t; return t; }
#line 2 "poly/count_terms.hpp" template<typename mint> int count_terms(const vc<mint>& f){ int t = 0; FOR(i, len(f)) if(f[i] != mint(0)) ++t; return t; }