# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
824233 | 2023-08-13T19:36:23 Z | Liudas | 송신탑 (IOI22_towers) | C++17 | 4000 ms | 1444 KB |
#include "towers.h" #include <cassert> #include <cstdio> #include <bits/stdc++.h> using namespace std; vector<int> h; void init(int N, vector<int> H){ h = H; } int max_towers(int L, int R, int D){ int score = 0; for(int i = 0; i < h.size(); i ++){ int H = h[i]; int s = 0; bool good = false; for(int j = L; j <= R; j ++){ if(!good && h[j] <= H){ s ++; good = true; } else if(good && h[j] >= H + D){ good = false; } } score = max(score, s); } return max(1, score); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4042 ms | 932 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: '11' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | 1st lines differ - on the 1st token, expected: '13', found: '11' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4035 ms | 1444 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4043 ms | 592 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: '11' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 4042 ms | 932 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |