Skip to content

Commit

Permalink
Added my minimal competitive programming template
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeashu authored and x0lg0n committed Oct 30, 2024
1 parent 5ebdb96 commit bfb64d5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions C++/CP-template.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#include "bits/stdc++.h"

#define int long long
#define endl '\n'
#define vi vector
#define all(x) x.begin(), x.end()
#define f(i,s,e) for(long long i=s;i<e;i++)
#define cf(i,s,e) for(long long i=s;i<=e;i++)
#define rf(i,e,s) for(long long i=e-1;i>=s;i--)
#define dbg(v) cout << "Line(" << __LINE__ << ") -> " << #v << " = " << (v) << endl;


using namespace std;

int T = 0;

void solve(){

}

int32_t main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
//cout << fixed << setprecision(6)
if(T && cin >> T){
while(T--){
solve();
}
}
else solve();
}

0 comments on commit bfb64d5

Please sign in to comment.