답안 #740433

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
740433 2023-05-12T13:12:02 Z danikoynov 자동 인형 (IOI18_doll) C++14
2 / 100
18 ms 2980 KB
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int n, m;
void create_circuit(int M, vector<int> A)
{
    n = A.size();
    m = M;

    vector < int > c(m + 1);
    for (int i = 1; i < A.size(); i ++)
        c[A[i - 1]] = A[i];
    c[A.back()] = 0;
    c[0] = A[0];
    vector < int > x, y;
    answer(c, x, y);
}

Compilation message

doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:13:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |     for (int i = 1; i < A.size(); i ++)
      |                     ~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 17 ms 2380 KB Output is correct
3 Correct 12 ms 2004 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 9 ms 1364 KB Output is correct
6 Correct 17 ms 2900 KB Output is correct
7 Correct 0 ms 296 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 17 ms 2380 KB Output is correct
3 Correct 12 ms 2004 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 9 ms 1364 KB Output is correct
6 Correct 17 ms 2900 KB Output is correct
7 Correct 0 ms 296 KB Output is correct
8 Incorrect 18 ms 2980 KB wrong motion
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 17 ms 2380 KB Output is correct
3 Correct 12 ms 2004 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 9 ms 1364 KB Output is correct
6 Correct 17 ms 2900 KB Output is correct
7 Correct 0 ms 296 KB Output is correct
8 Incorrect 18 ms 2980 KB wrong motion
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB wrong motion
2 Halted 0 ms 0 KB -