# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1036504 |
2024-07-27T13:12:17 Z |
mimi |
Nafta (COI15_nafta) |
C++17 |
|
0 ms |
0 KB |
#include <bits/stdc++.h>
#ifndef LOCAL
#include <debugging.h>
#endif
#define ff first
#define ss second
#define pp push_back
#define all(x) (x).begin(),(x).end()
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#define dbg(v) cout << "Line(" << __LINE__ << ") -> " << #v << " = " << (v) << endl;
using namespace std;
using ll = long long;
using ld = long double;
using pii = pair <int,int>;
using pll = pair <ll,ll>;
using pld = pair <ld,ld>;
const char el ='\n';
const char sp = ' ';
const int maxn = 2e5+5, mod = 1e9+7, N = 10;
const ll inf = 1e18L+3;
void input()
{
}
void solve()
{
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int test = 1;
// cin>>test;
while(test-->0)
{
input();
solve();
}
return 0;
}
Compilation message
nafta.cpp:3:10: fatal error: debugging.h: No such file or directory
3 | #include <debugging.h>
| ^~~~~~~~~~~~~
compilation terminated.