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
- c++
- WarGame
- 기계학습
- lob
- 숙명여자대학교 정보보안동아리
- 백준
- C언어
- Sookmyung Information Security Study
- 자료구조 복습
- PHP 웹페이지 만들기
- 머신러닝
- Javascript
- XSS Game
- The Loard of BOF
- 드림핵
- BOJ
- 숙명여자대학교 정보보안 동아리
- 웹페이지 만들기
- SWEA
- hackerrank
- HTML
- Python
- 풀이
- CSS
- BOJ Python
- siss
- 생활코딩
Archives
- Today
- Total
목록팩토리얼 진법 (1)
혜랑's STORY
[BOJ_C++] 5692번 : 팩토리얼 진법
문제 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include using namespace std; int factorial_number(string x) { int num = 0, i = 0; int fac[5] = { 1,2,6,24,120 }; for (int j = x.length()-1; j>=0; j--) { num += fac[i++] * (x[j] - '0'); } return num; } int main() { ios::sync_with_stdio(false); cin.tie(0); string x; while (1) { cin >> x; if (x == "0") break; printf("%d\n", factorial_number(x..
무지성 공부방/알고리즘 해결
2021. 6. 30. 13:01