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 b982022 commit 84529dcCopy full SHA for 84529dc
marathon/template.cpp
@@ -75,9 +75,24 @@ bool chmax(Tp& a, const Tp& b) {
75
#include "/home/tsutaj/Documents/compro/cpp_library/marathon/rand.cpp"
76
Rand rnd(35023503980LL);
77
Timer timer;
78
+using Answer = vector<int>; // TODO
79
+
80
+void input() {
81
82
+}
83
84
+void output(const Answer& answer, bool is_final = false) {
85
86
87
88
+void solve() {
89
+ // auto ans = get_answer();
90
+ // output(ans, true);
91
92
93
int main() {
94
timer.setStart();
-
95
+ input();
96
+ solve();
97
return 0;
98
}
0 commit comments