Codeforces-SolutionsA/Template/CPTemp.cpp

34 lines
895 B
C++
Raw Normal View History

2023-12-09 12:48:00 +08:00
#include<bits/stdc++.h>
using namespace std;
2024-04-22 04:35:26 +08:00
#ifdef ONLINE_JUDGE
2024-04-22 04:20:18 +08:00
#define dbg(...)
2024-04-22 04:35:26 +08:00
#else
#include "Debug.h"
2024-04-22 04:20:18 +08:00
#endif
2024-04-22 02:40:03 +08:00
#define ll long long
#define ull unsigned long long
#define endl '\n'
#define ff first
#define ss second
#define pb push_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
#define PI 3.141592653589793238
#define MOD 1000000007
#define FAST (ios_base:: sync_with_stdio(false),cin.tie(NULL));
ull mypow(ull a,ull b,ull m=MOD) {ull ans=1; a%=m; while(b){if(b&1) ans=(ans*a)%m; a=(a*a)%m; b>>=1;} return ans;}
2024-04-22 04:20:18 +08:00
2023-12-09 12:48:00 +08:00
void solve()
{
}
2024-02-17 00:59:30 +08:00
signed main()
2023-12-09 12:48:00 +08:00
{
2024-04-22 02:40:03 +08:00
FAST;
2023-12-09 12:48:00 +08:00
int TC = 1;
//cin >> TC;
2024-04-22 02:40:03 +08:00
while (TC--) solve();
2023-12-09 12:48:00 +08:00
}