FG.cpp:5:7: error: expected nested-name-specifier before 'll'
using ll = long long;
^
FG.cpp:6:1: error: 'll' does not name a type
ll MMOD = 1000000007;
^
FG.cpp:7:1: error: 'll' does not name a type
ll SEXER;
^
FG.cpp:8:1: error: 'll' does not name a type
ll popo(ll a, ll p) {
^
FG.cpp:22:1: error: 'll' does not name a type
ll arr[31347599];
^
FG.cpp: In function 'int main()':
FG.cpp:26:2: error: 'll' was not declared in this scope
ll n;
^
FG.cpp:27:5: error: expected ';' before 'cnt'
ll cnt = 0;
^
FG.cpp:28:5: error: expected ';' before 'ans'
ll ans = 1;
^
FG.cpp:29:17: error: 'n' was not declared in this scope
scanf("%lld", &n);
^
FG.cpp:34:5: error: expected ';' before 'gsize'
ll gsize = 4;
^
FG.cpp:35:2: error: 'arr' was not declared in this scope
arr[0] = 0;
^
FG.cpp:39:2: error: 'cnt' was not declared in this scope
cnt = 1 + 2 + 2;
^
FG.cpp:40:2: error: 'ans' was not declared in this scope
ans = 2 * 2 * 3 * 3;
^
FG.cpp:43:7: error: 'tmp' was not declared in this scope
ll &tmp = arr[i];
^
FG.cpp:44:6: error: expected ';' before 'ttmp'
ll ttmp = 1;
^
FG.cpp:45:12: error: 'gsize' was not declared in this scope
int st = gsize;
^
FG.cpp:46:11: error: expected ';' before 'j'
for (ll j = 0; j<tmp; ++j) {
^
FG.cpp:46:18: error: 'j' was not declared in this scope
for (ll j = 0; j<tmp; ++j) {
^
FG.cpp:51:17: error: 'ttmp' was not declared in this scope
ans *= popo(ttmp, i);
^
FG.cpp:51:24: error: 'popo' was not declared in this scope
ans *= popo(ttmp, i);
^
FG.cpp:52:15: error: 'MMOD' was not declared in this scope
if(ans >= MMOD) ans %= MMOD;
^
FG.cpp:55:16: error: 'MMOD' was not declared in this scope
if (ans >= MMOD) ans %= MMOD;
^
FG.cpp:59:4: error: 'ttmp' was not declared in this scope
ttmp *= (gsize - 1);
^
FG.cpp:60:15: error: 'MMOD' was not declared in this scope
if(ttmp >= MMOD) ttmp %= MMOD;
^
FG.cpp:62:15: error: 'ttmp' was not declared in this scope
ans *= popo(ttmp, i);
^
FG.cpp:62:22: error: 'popo' was not declared in this scope
ans *= popo(ttmp, i);
^
FG.cpp:63:13: error: 'MMOD' was not declared in this scope
if(ans >= MMOD) ans %= MMOD;
^
FG.cpp:45:7: warning: unused variable 'st' [-Wunused-variable]
int st = gsize;
^