# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
480613 | 2021-10-17T12:44:37 Z | Haidara | 사탕 분배 (IOI21_candies) | C++17 | 87 ms | 6452 KB |
#include<bits/stdc++.h> using namespace std; int* distribute_candies(vector<int> c,vector<int> l,vector<int> r, vector<int> v) { int n=l.size(); int res[c.size()]; for(int i=0;i<c.size();i++) res[i]=0; for(int i=0;i<n;i++) { for(int j=l[i];j<=r[i];j++) { if(v[i]>0) res[j]=min(res[j]+v[i],c[j]); else res[j]=max(0,res[j]-v[i]); } } return res; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 87 ms | 6452 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |