We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8c5a8c commit 2a57558Copy full SHA for 2a57558
Library/skeleton.cpp
@@ -1,16 +1,17 @@
1
/*
2
* Problem: $(PROBLEM)
3
- * URL: $(URL)
+ * Url: $(URL)
4
* Judge: $(JUDGE)
5
* Contest: $(CONTEST)
6
- * DATE CREATED: $(DATE)
+ * Date Created: $(DATE)
7
* Memory Limit: $(MEMLIM)
8
* Time Limit: $(TIMELIM)
9
- * VERDICT: undefined
+ * Verdict: undefined
10
*/
11
12
#include <stdint.h> //uint32_t
13
#include <unistd.h> // unsigned int sleep(unsigned int seconds);
14
+
15
#include <algorithm>
16
#include <bitset>
17
#include <cctype>
@@ -85,12 +86,10 @@ typedef vector<long long> vl;
85
86
#define EPS 1e-7
87
#define MAX 10000007 // 1e7+7
88
-
89
int main() {
90
ios_base::sync_with_stdio(false);
91
cin.tie(0);
92
cout.tie(0);
93
94
return 0;
95
}
96
0 commit comments