Pagini recente » Cod sursa (job #3134191) | Cod sursa (job #768919) | Cod sursa (job #2582505) | Cod sursa (job #3234473) | Cod sursa (job #1907021)
#include<bits/stdc++.h>
#define x first
#define pb push_back
#define mp make_pair
#define y second
#define all(a) a.begin(), a.end()
#define l(x) (x<<1)
#define r(x) ((x<<1) | 1)
#define f(x) x>>1
#define lsb(x) (x&(-x))
using namespace std;
typedef long long LL;
typedef long double LD;
typedef vector<LL> VLL;
typedef pair<int, int> PII;
typedef pair<LL, LL> PLL;
typedef vector<int> VI;
typedef VI::iterator vit;
typedef tuple<int,int,int> PIII;
const LL INF=(1LL<<62);
const int MAXN=505;
const int LOGMAX=18;
const int MOD=70657;
const LD pi=acos(-1.0);
const int dx[] = {0, 1, 1, 0, -1, -1};
const int dy[] = {1, 0, -1, -1, 0, 1};
void solve(){
}
int main()
{
cout<<setprecision(6)<<fixed;
ios_base::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
}