Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C언어
- 드림핵
- hackctf
- XSS Game
- 숙명여자대학교 정보보안동아리
- BOJ Python
- HTML
- 백준
- hackerrank
- Python
- 머신러닝
- The Loard of BOF
- 숙명여자대학교 정보보안 동아리
- 웹페이지 만들기
- 파이썬
- Sookmyung Information Security Study
- 기계학습
- siss
- 생활코딩
- BOJ
- 자료구조 복습
- WarGame
- c++
- CSS
- SWEA
- lob
- PHP 웹페이지 만들기
- Javascript
- 풀이
- c
Archives
- Today
- Total
목록계단 오르기 (1)
혜랑's STORY
[BOJ_C++] 2579번 : 계단 오르기
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int dp[301]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); memset(dp, 0, sizeof(dp)); int n; cin >> n; int* list = new int[n]; for (int i = 0; i > list[i]; dp[1] = list[0]; dp[2] = list[0] + list[1]; dp[3] = max(dp[1] + list[2], l..
무지성 공부방/알고리즘 해결
2021. 8. 13. 22:15