제출 #1036504

#제출 시각아이디문제언어결과실행 시간메모리
1036504mimiNafta (COI15_nafta)C++17
컴파일 에러
0 ms0 KiB
#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; }

컴파일 시 표준 에러 (stderr) 메시지

nafta.cpp:3:10: fatal error: debugging.h: No such file or directory
    3 | #include <debugging.h>
      |          ^~~~~~~~~~~~~
compilation terminated.