# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
979328 | 2024-05-10T15:59:44 Z | Isam | 사탕 분배 (IOI21_candies) | C++17 | 5000 ms | 7252 KB |
#include "candies.h" #include<bits/stdc++.h> using namespace std; constexpr int sz = 2e5 + 5; int n, Q; vector<int> a; std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l, std::vector<int> r, std::vector<int> v){ n = (int)c.size(), Q = (int)r.size(); a.assign(n, 0); for(register int q = 0; q < Q; ++q){ for(register int i = l[q]; i <= r[q]; ++i){ if(v[q] > 0){ a[i-1] = min(c[i-1], a[i-1] + v[q]); }else{ a[i-1] = max(0, a[i-1] + v[q]); } } } return a; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5059 ms | 7252 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 600 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |