Skip to content

Commit

Permalink
Merge pull request #66 from AlgoLeadMe/16-seongwon030
Browse files Browse the repository at this point in the history
16-seongwon030
  • Loading branch information
seongwon030 authored Jul 12, 2024
2 parents 9e7dc6e + 3388f62 commit d1aa6c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions seongwon030/DP/์—ฐ์†ํ•ฉ.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
n = int(input())
m = list(map(int,input().split()))

for i in range(1,n):
m[i] = max(m[i], m[i]+m[i-1])
print(max(m))
5 changes: 4 additions & 1 deletion seongwon030/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
| 10์ฐจ์‹œ | 2024.05.07 | ์ˆ˜ํ•™ | [์—ฐ์† ํ•ฉ](https://www.acmicpc.net/problem/2737) | [#10](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/43) |
| 11์ฐจ์‹œ | 2024.05.07 | DP | [ํ•ฉ๋ถ„ํ•ด](https://www.acmicpc.net/problem/2225) | [#11](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/44) |
| 12์ฐจ์‹œ | 2024.05.13 | ๋ธŒ๋ฃจํŠธํฌ์Šค | [์•”ํ˜ธ๋งŒ๋“ค๊ธฐ](https://www.acmicpc.net/problem/1759) | [#12](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/50) |
| 13์ฐจ์‹œ | 2024.05.23 | ๋ถ„ํ• ์ •๋ณต | [ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜ 6](https://www.acmicpc.net/problem/11444) | [#13](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/54) |
| 13์ฐจ์‹œ | 2024.05.23 | ๋ถ„ํ• ์ •๋ณต | [ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜ 6](https://www.acmicpc.net/problem/11444) | [#13](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/55) |
| 14์ฐจ์‹œ | 2024.05.28 | ํ | [๊ฐ€์šด๋ฐ๋ฅผ ๋งํ•ด์š”](https://www.acmicpc.net/problem/1655) | [#14](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/58) |
| 15์ฐจ์‹œ | 2024.06.01 | ํ | [์ค‘์•™๊ฐ’ ๊ตฌํ•˜๊ธฐ](https://www.acmicpc.net/problem/2696) | [#15](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/61) |
| 16์ฐจ์‹œ | 2024.07.04 | DP | [์—ฐ์†ํ•ฉ](https://www.acmicpc.net/problem/1912) | [#16](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/66) |

---

0 comments on commit d1aa6c6

Please sign in to comment.