File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 14
14
* .in
15
15
.vscode
16
16
* .sh
17
- Makefile
18
17
a
19
18
.clang-format
19
+ codeforce /cf.cpp
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ #define MAXN 2000000000
2
+ #define llu unsigned long long
3
+ #include < algorithm>
4
+ #include < cassert>
5
+ #include < cmath>
6
+ #include < iostream>
7
+ #include < utility>
8
+ #include < vector>
9
+ #include < bits/stdc++.h>
10
+ using namespace std ;
11
+
12
+
13
+ int main () {
14
+ #ifdef DEBUG
15
+ freopen (" in.in" , " r" , stdin);
16
+ #endif
17
+ ios_base::sync_with_stdio (0 );
18
+ cin.tie (0 );
19
+
20
+ // do something
21
+
22
+ return 0 ;
23
+ }
You can’t perform that action at this time.
0 commit comments