# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
150163 | 2019-09-01T07:50:00 Z | 샌즈뼈(#3582, exqt, esselem) | Wine Tasting (FXCUP4_wine) | C++17 | 9 ms | 864 KB |
#include <bits/stdc++.h> #include "bartender.h" using namespace std; std::vector<int> BlendWines(int K, std::vector<int> R) { int N = R.size(); int i; int C=6; vector<int> ret(N); for (i=0;i<N;i++) ret[i] = max(1,R[i]-C) - 1; return ret; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 864 KB | Wrong |
2 | Halted | 0 ms | 0 KB | - |