File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1414* .in
1515.vscode
1616* .sh
17- Makefile
1817a
1918.clang-format
19+ codeforce /cf.cpp
Original file line number Diff line number Diff line change 1+ all :
2+ g++ cf.cpp -DDEBUG -g -std=c++17 -o a
3+ ./a
4+
5+ new :
6+ -@rm cf.cpp in.in
7+ cp template.cpp cf.cpp
8+ touch in.in
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