# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
745803 | 2023-05-21T08:03:59 Z | JakobZorz | Connecting Supertrees (IOI20_supertrees) | C++14 | 1 ms | 288 KB |
#include "supertrees.h" #include <vector> using namespace std; int construct(vector<vector<int>> p) { int n = p.size(); vector<vector<int>> answer(n,vector<int>(n,0)); for(int i=0;i<n-1;i++) answer[i][i+1]=1; build(answer); return 1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 288 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 288 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 288 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 288 KB | b is not symmetric: b[0][1] (1) != b[1][0] (0) |
3 | Halted | 0 ms | 0 KB | - |