728x90 알고리즘47 백준 2559번 수열 (C++) 문제정답 코드#include #include #include using namespace std; int main() { ios :: sync_with_stdio(0); cin.tie(0); int day; int c_time; cin >> day >> c_time; vector tp(day, -2147483647); vector sum(day, -2147483647); for (int i=0 ;i > tp[i]; if (i == c_time -1) { sum[i] =0; for (int j = 0; j = c_time) sum[i] = sum[i - 1] + tp[i] - tp[i-c.. 2022. 12. 30. 백준 9996번 한국이 그리울 땐 서버에 접속하지 (C++) 문제정답 코드#include #include using namespace std; char result[101]; int main() { ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; string input; cin >>input; string head; string tail; for (int i=0; i > cmp; if (.. 2022. 12. 30. 이전 1 ··· 3 4 5 6 다음 728x90