답안 #1043302

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1043302 2024-08-04T08:01:06 Z nisanduu 벽 (IOI14_wall) C++14
0 / 100
817 ms 13952 KB
#include "wall.h"
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){
    for(int i=0;i<n;i++){
        finalHeight[i]=0;
    } 
    for(int i=0;i<k;i++){
        int o = op[i];
        for(int j=left[i];j<=right[i];j++){
            if(finalHeight[j]<height[i] && o==1) finalHeight[j] += height[i];
            if(finalHeight[j]>height[i] && o==2) finalHeight[j] -= height[i];
        }
    }
  return;
}

# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 568 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 70 ms 13952 KB Output is correct
3 Incorrect 817 ms 7576 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -