# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
150163 | 2019-09-01T07:50:00 Z | 샌즈뼈(#3582, exqt, esselem) | 포도주 시음 (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
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 864 KB | Wrong |
2 | Halted | 0 ms | 0 KB | - |