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
- RVO
- baekjoon
- const
- 언리얼엔진5
- 줄 세우기
- Frustum
- 2294
- 오블완
- DeferredRendering
- 티스토리챌린지
- 프로그래머스
- algorithm
- DirectX11
- 1563
- 백준
- directx
- GeeksForGeeks
- Programmers
- RootMotion
- 팰린드롬 만들기
- softeer
- C++
- Unreal Engine5
- C
- winapi
- UnrealEngine4
- IFileDialog
- UE5
- NRVO
- UnrealEngine5
Archives
- Today
- Total
목록연속합 (1)
Game Develop
[Algorithm] Baekjoon 1912번 : 연속합
https://www.acmicpc.net/problem/1912 1912번: 연속합 첫째 줄에 정수 n(1 ≤ n ≤ 100,000)이 주어지고 둘째 줄에는 n개의 정수로 이루어진 수열이 주어진다. 수는 -1,000보다 크거나 같고, 1,000보다 작거나 같은 정수이다. www.acmicpc.net 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 32 33 34 35 36 37 38 39 40 41 int arr[100001] = { 0 }; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; f..
Algorithm/Baekjoon
2023. 9. 4. 00:05