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
- siss
- 머신러닝
- BOJ
- c++
- XSS Game
- CSS
- 드림핵
- SWEA
- 숙명여자대학교 정보보안동아리
- 기계학습
- C언어
- lob
- hackerrank
- 웹페이지 만들기
- 파이썬
- 숙명여자대학교 정보보안 동아리
- BOJ Python
- Python
- 생활코딩
- The Loard of BOF
- HTML
- 자료구조 복습
- WarGame
- 백준
- c
- 풀이
- PHP 웹페이지 만들기
- hackctf
- Sookmyung Information Security Study
- Javascript
Archives
- Today
- Total
목록1024 (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