제출 #1331711

#제출 시각아이디문제언어결과실행 시간메모리
1331711nguyengiabach1201Ancient Machine (JOI21_ancient_machine)C++20
0 / 100
31 ms5908 KiB
#include "Anna.h"
#include <vector>

namespace {

int variable_example = 0;

}

void Anna(int N, std::vector<char> S) {
  variable_example++;
  Send(0);
  Send(1);
}
#include "Bruno.h"
#include <vector>

namespace {

int variable_example = 0;

int FunctionExample(int P) { return 1 - P; }

}  // namespace

void Bruno(int N, int L, std::vector<int> A) {
  for (int i = 0; i < L; i++) {
    variable_example += FunctionExample(A[i]);
  }
  for (int i = 0; i < N; i++) {
    Remove(i);
  }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...