We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e7b54 commit 4a04455Copy full SHA for 4a04455
res.txt
@@ -1,10 +0,0 @@
1
-4256178549306104/5252000529515471
2
-17029570951453186/20688372816560163
3
-41779179275628391/50319537767180790
4
-503317526778745237/606549087413172010
5
-25524879556576135/30805950249264526
6
-71903613157526343/88531384307240410
7
-26216413989010084/32314916107736685
8
-43460932620688859/53622306208060170
9
-73906955891627819/88950921050264065
10
-2277151887607348/2823994303399151
stack_limit.cpp
@@ -1,4 +1,6 @@
//Below code is included to check the stack limit size on the Online Judge
+//Generally inlcuded when using recursive functions, like dfs
+//Most online Judges have Stack limit as 8-16 MB
#include <bits/stdc++.h>
using namespace std;
@@ -21,6 +23,8 @@ int main() {
21
23
}
22
24
25
26
+
27
+ //write your code below
28
29
return 0;
30
0 commit comments