0_0_22234027_2459.cpp:25:9: error: 'csl' does not name a type
typedef csl::BigDec< csl::array<std::uint32_t,25> > bint;
^
0_0_22234027_2459.cpp:31:3: error: 'll' does not name a type
ll n, ret;
^
0_0_22234027_2459.cpp:51:1: error: 'bint' does not name a type
bint f[N];
^
0_0_22234027_2459.cpp:53:1: error: 'll' does not name a type
ll dp[N];
^
0_0_22234027_2459.cpp: In function 'void init()':
0_0_22234027_2459.cpp:61:3: error: 'f' was not declared in this scope
f[0] = 0, f[1] = 1, dp[0] = 0, g[0] = 0;
^
0_0_22234027_2459.cpp:61:23: error: 'dp' was not declared in this scope
f[0] = 0, f[1] = 1, dp[0] = 0, g[0] = 0;
^
0_0_22234027_2459.cpp:63:7: error: 'i' was not declared in this scope
rep(i, 1, M) g[i] = g[i / 10] + i % 10;
^
0_0_22234027_2459.cpp:63:14: error: 'rep' was not declared in this scope
rep(i, 1, M) g[i] = g[i / 10] + i % 10;
^
0_0_22234027_2459.cpp: In function 'void input()':
0_0_22234027_2459.cpp:71:3: error: 'cin' was not declared in this scope
cin >> _;
^
0_0_22234027_2459.cpp:73:7: error: 'i' was not declared in this scope
rep(i, 0, _) cin >> a[i].n >> a[i].k, a[i].idx = i, a[i].ret = 0;
^
0_0_22234027_2459.cpp:73:14: error: 'rep' was not declared in this scope
rep(i, 0, _) cin >> a[i].n >> a[i].k, a[i].idx = i, a[i].ret = 0;
^
0_0_22234027_2459.cpp:75:3: error: 'sort' is not a member of 'std'
std::sort(a, a + _, node::cmpk);
^
0_0_22234027_2459.cpp: At global scope:
0_0_22234027_2459.cpp:81:17: error: 'bint' does not name a type
int count(const bint& n) {
^
0_0_22234027_2459.cpp: In function 'int count(const int&)':
0_0_22234027_2459.cpp:83:22: error: request for member 'size' in 'n', which is of non-class type 'const int'
int ret = 0, m = n.size();
^
0_0_22234027_2459.cpp:85:7: error: 'i' was not declared in this scope
rep(i, 0, m) {
^
0_0_22234027_2459.cpp:85:14: error: 'rep' was not declared in this scope
rep(i, 0, m) {
^
0_0_22234027_2459.cpp: In function 'void solve(int, int)':
0_0_22234027_2459.cpp:101:7: error: 'i' was not declared in this scope
rep(i, 2, m + 1) f[i] = f[i - 1] + f[i - 2];
^
0_0_22234027_2459.cpp:101:18: error: 'rep' was not declared in this scope
rep(i, 2, m + 1) f[i] = f[i - 1] + f[i - 2];
^
0_0_22234027_2459.cpp:103:3: error: 'bint' was not declared in this scope
bint fk = f[m];
^
0_0_22234027_2459.cpp: In function 'void output()':
0_0_22234027_2459.cpp:121:3: error: 'sort' is not a member of 'std'
std::sort(a, a + _, node::cmpi);
^
0_0_22234027_2459.cpp:123:7: error: 'i' was not declared in this scope
rep(i, 0, _) cout << "Case #" << i + 1 << ": " << a[i].ret << "\n";
^
0_0_22234027_2459.cpp:123:14: error: 'rep' was not declared in this scope
rep(i, 0, _) cout << "Case #" << i + 1 << ": " << a[i].ret << "\n";
^
0_0_22234027_2459.cpp: In function 'int main()':
0_0_22234027_2459.cpp:133:8: error: 'std::ios_base' has not been declared
std::ios_base::sync_with_stdio(false);
^
0_0_22234027_2459.cpp:135:3: error: 'cin' is not a member of 'std'
std::cin.tie(nullptr);
^
0_0_22234027_2459.cpp:141:7: error: 'i' was not declared in this scope
rep(i, 0, _) {
^
0_0_22234027_2459.cpp:141:14: error: 'rep' was not declared in this scope
rep(i, 0, _) {
^
|