We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74cc3bf commit cd77e42Copy full SHA for cd77e42
3 files changed
.gitignore
@@ -14,6 +14,6 @@
14
*.in
15
.vscode
16
*.sh
17
-Makefile
18
a
19
.clang-format
+codeforce/cf.cpp
codeforce/Makefile
@@ -0,0 +1,9 @@
1
+all:
2
+ @rm a
3
+ g++ -g -std=c++17 -DDEBUG cf.cpp -o a
4
+ ./a
5
+
6
+new:
7
+ @rm cf.cpp in.in
8
+ touch in.in
9
+ cp template.cpp cf.cpp
codeforce/template.cpp
@@ -0,0 +1,23 @@
+#define MAXN 2000000000
+#define llu unsigned long long
+#include <algorithm>
+#include <cassert>
+#include <cmath>
+#include <iostream>
+#include <utility>
+#include <vector>
+#include <bits/stdc++.h>
10
+using namespace std;
11
12
13
+int main() {
+#ifdef DEBUG
+ freopen("in.in", "r", stdin);
+#endif
+ ios_base::sync_with_stdio(0);
+ cin.tie(0);
20
+ // do something
21
22
+ return 0;
23
+}
0 commit comments