답안 #711532

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
711532 2023-03-17T07:54:33 Z t6twotwo 송신탑 (IOI22_towers) C++17
0 / 100
4000 ms 1420 KB
#include "towers.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int N;
vector<int> H;
void init(int _N, vector<int> _H) {
    N = _N;
    H = _H;
}
int max_towers(int L, int R, int D) {
    int x = max_element(H.begin(), H.end()) - H.begin();
    if (L < x && x < R && max(H[L], H[R]) <= H[x] - D) {
        return 2;
    } else {
        return 1;
    }
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4061 ms 968 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4045 ms 1420 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2047 ms 556 KB 1st lines differ - on the 1st token, expected: '7197', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB 1st lines differ - on the 1st token, expected: '13', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4061 ms 968 KB Time limit exceeded
2 Halted 0 ms 0 KB -