# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
152029 | 2019-09-06T04:24:30 Z | ydk1104 | Wine Tasting (FXCUP4_wine) | C++17 | 0 ms | 0 KB |
#include "bartender.h" std::vector<int> BlendWines(int K, std::vector<int> R){ int N = R.size(); for(auto &i:R){ if(i>5) i-=4; else i=1; } return R; }