# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1078635 | 2024-08-28T02:11:27 Z | sqrteipi | Longest Trip (IOI23_longesttrip) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; #define int long long vector<signed> longest_trip(int N, int D) { return {1, 2}; }