0_0_20241495_25384.cpp:11:12: error: 'int64' does not name a type
#define ll int64
^
0_0_20241495_25384.cpp:13:1: note: in expansion of macro 'll'
ll dp[25][15];
^
0_0_20241495_25384.cpp:11:12: error: 'int64' does not name a type
#define ll int64
^
0_0_20241495_25384.cpp:14:1: note: in expansion of macro 'll'
ll diget[25];
^
0_0_20241495_25384.cpp: In function 'void init()':
0_0_20241495_25384.cpp:18:9: error: 'dp' was not declared in this scope
dp[1][i]=1;
^
0_0_20241495_25384.cpp:26:13: error: 'dp' was not declared in this scope
dp[i][j]+=dp[i-1][l];
^
0_0_20241495_25384.cpp: At global scope:
0_0_20241495_25384.cpp:11:12: error: 'int64' does not name a type
#define ll int64
^
0_0_20241495_25384.cpp:31:1: note: in expansion of macro 'll'
ll solve(ll m)
^
0_0_20241495_25384.cpp: In function 'int main()':
0_0_20241495_25384.cpp:11:12: error: 'int64' was not declared in this scope
#define ll int64
^
0_0_20241495_25384.cpp:57:9: note: in expansion of macro 'll'
ll n;
^
0_0_20241495_25384.cpp:58:14: error: 'n' was not declared in this scope
cin>>n;
^
0_0_20241495_25384.cpp:59:24: error: 'solve' was not declared in this scope
cout<<n-solve(n)<<endl;;
^
|