Submission #624291

# Submission time Handle Problem Language Result Execution time Memory
624291 2022-08-07T16:50:23 Z Icebear16 Mechanical Doll (IOI18_doll) C++14
0 / 100
1 ms 212 KB
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define pf push_front
#define mp make_pair
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),ra.end()
#define sz(a) a.size()

void create_circuit(int M, std::vector<int> A) {
//  int N = A.size();
  std::vector<int> C(M + 1);
  C[0] = -1;
  for (int i = 1; i < M; ++i) {
    C[i] = A[i];
  }
  C[M]=A[0];
//  std::vector<int> X(N), Y(N);
//  for (int k = 0; k < N; ++k) {
//    X[k] = Y[k] = A[k];
//  }
  answer(C, {}, {});
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB wrong serial number
2 Halted 0 ms 0 KB -