#include<iostream> #include<cstdio> #include<cstring> #include<vector> #include<queue> #include<stack> #include<map> #include<cmath> #include<algorithm> #define psb push_back #define ppb pop_back #define all(x) x.begin(),x.end() #define N 1000100 #define sf scanf #define pf printf using namespace std; typedef long long LL; typedef vector<LL>vll; LL ar[N] , num[N]; int main() { int t , tc=0; //cin >> t; sf("%d",&t); while(t--) { LL n, x, arlen=-1, nmlen=-1 , i , maxi=-1 , zar; char c; //cin >> n; sf("%lld",&n); //cout << "Case " << ++tc << ":\n"; ...
Comments
Post a Comment