# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
827933 | 2023-08-16T23:09:41 Z | Seb | 송신탑 (IOI22_towers) | C++17 | 342 ms | 1828 KB |
#include "towers.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; #define f first #define s second ll k,h[100005]; void init(int N, std::vector<int> H) { for (int i=0;i<N;i++) { h[i] = H[i]; if (i>0 && i<N-1 && H[i] > H[i-1] && H[i] > H[i+1]) k = i; } return; } int max_towers(int L, int R, int D) { if (L > k || k > R) return 0; if (h[L] <= h[k]-D && h[R] <= h[k]-D) return 2; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 327 ms | 1228 KB | 1st lines differ - on the 1st token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | 1st lines differ - on the 1st token, expected: '13', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | 1st lines differ - on the 1st token, expected: '13', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 342 ms | 1828 KB | 1st lines differ - on the 1st token, expected: '11903', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 114 ms | 560 KB | 1st lines differ - on the 1st token, expected: '7197', found: '2' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 208 KB | 1st lines differ - on the 1st token, expected: '13', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 327 ms | 1228 KB | 1st lines differ - on the 1st token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |