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
- XSS Game
- HTML
- CSS
- 숙명여자대학교 정보보안 동아리
- 백준
- 웹페이지 만들기
- 파이썬
- WarGame
- C언어
- siss
- hackctf
- Sookmyung Information Security Study
- 풀이
- c++
- 숙명여자대학교 정보보안동아리
- 머신러닝
- SWEA
- PHP 웹페이지 만들기
- Python
- c
- 자료구조 복습
- BOJ
- 드림핵
- Javascript
- lob
- 기계학습
- 생활코딩
- The Loard of BOF
- hackerrank
- BOJ Python
Archives
- Today
- Total
목록수열의 합 (1)
혜랑's STORY
[BOJ_C++] 1024번 : 수열의 합
참고한 블로그 : https://hooongs.tistory.com/334 1. 문제 2. 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); bool result = false; long n; int l, x; cin >> n >> l; for (int i = l; i < 101; i++) { x = n - (i * (i + 1) / 2); //사실상 이 곳의 x는 LX라고 생각하여도 무방함. if (x % i == 0) { x = x / i; if (x..
무지성 공부방/알고리즘 해결
2021. 7. 12. 22:36