답안 #899564

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
899564 2024-01-06T13:07:35 Z Szil 가장 긴 여행 (IOI23_longesttrip) C++17
0 / 100
1000 ms 2097152 KB
#include <bits/stdc++.h>

using namespace std;

// bool are_connected(int[] A, int[] B);

int* longest_trip(int N, int D) {
    assert(D == 3);
    int *ans = new int[N];
    for (int i = 0; i < N; i++) ans[i] = i;
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 600 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1344 ms 2097152 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 600 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 856 ms 2097152 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -