답안 #631045

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
631045 2022-08-17T15:23:55 Z rainboy 송신탑 (IOI22_towers) C++17
0 / 100
506 ms 1452 KB
#include "towers.h"
#include <vector>

using namespace std;

const int N = 100000;

typedef vector<int> vi;

int aa[N], i;

void init(int n, vi aa_) {
	int i;

	for (i = 0; i < n; i++)
		aa[i] = aa_[i];
	i = 0;
	while (i < n - 1 && aa[i] < aa[i + 1])
		i++;
}

int max_towers(int l, int r, int d) {
	return l < i && i < r && aa[i] - aa[l] >= d && aa[i] - aa[r] >= d ? 2 : 1;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 427 ms 928 KB 12th lines differ - on the 1st token, expected: '2', 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 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 506 ms 1452 KB 1st lines differ - on the 1st token, expected: '11903', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 304 ms 464 KB 1st lines differ - on the 1st token, expected: '7197', 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 Incorrect 427 ms 928 KB 12th lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -