Wh4rp / Competitive-Programming

My Competitive Programming repository :)

Home Page:https://endurable-pest-98c.notion.site/46967f63f07c456ba75de985f227c054?v=d945287b59dd4ca0abf39c1999280af8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Competitive-Programming

Repository where I upload everyting related to CP that I'm doing.

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; ++i)
#define rep_(i, k, n) for (int i = k; i < n; ++i)
using ll = long long;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  cout.setf(ios::fixed);
  cout.precision(10);
  
  // Solution Here
  
  return 0;
}

If you want run HelloWorld.cpp is such to done

CP HelloWorld.cpp

It also acepts input and output files

CP HelloWorld.cpp in.txt out.txt

More about it in these repository.

About

My Competitive Programming repository :)

https://endurable-pest-98c.notion.site/46967f63f07c456ba75de985f227c054?v=d945287b59dd4ca0abf39c1999280af8


Languages

Language:C++ 92.1%Language:Python 5.5%Language:C 1.3%Language:Kotlin 1.1%