Codeforces-SolutionsA/CPTemp.cpp

28 lines
653 B
C++
Raw Normal View History

2023-12-09 12:48:00 +08:00
#include<bits/stdc++.h>
using namespace std;
2024-04-24 01:48:41 +08:00
#ifdef ONLINE_JUDGE
#define dbg(...)
#else
#include "debug.h"
#endif
2024-04-22 02:40:03 +08:00
#define ll long long
#define endl '\n'
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
#define FAST (ios_base:: sync_with_stdio(false),cin.tie(NULL));
2024-04-22 18:38:52 +08:00
ll pow(ll x,ll y,ll m=1e9+7){ll ans=1;x%=m;while(y){if(y&1)ans=(ans*x)%m;x=(x*x)%m;y>>=1;}return ans;}
2024-04-22 04:20:18 +08:00
2023-12-09 12:48:00 +08:00
void solve()
{
2024-04-24 01:48:41 +08:00
2023-12-09 12:48:00 +08:00
}
2024-04-23 22:55:19 +08:00
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;
2024-04-24 01:48:41 +08:00
// cin >> TC;
2024-04-22 02:40:03 +08:00
while (TC--) solve();
2023-12-09 12:48:00 +08:00
}