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
- 코딩테스트
- 운영체제
- Flutter
- 99일지
- 자바
- java
- 스파르타내일배움캠프
- 중심사회
- 백준
- 항해
- 개발자스터디
- 프로그래머스
- 컴퓨터개론
- MySQL
- 스파르타코딩클럽
- Python
- 스파르타내일배움캠프WIL
- AWS
- 부트캠프
- 스파르타내일배움캠프TIL
- til
- 소프트웨어
- 내일배움캠프
- 개인공부
- 국비
- 99클럽
- wil
- 개발자블로그
- Spring
- 컴퓨터구조론 5판
Archives
- Today
- Total
목록백준 (16)
컴공생의 발자취
백준 2609번 최대공약수와 최소공배수
python n1, n2 = map(int, input().split()) def gcd(x, y): while(y): x, y = y, x%y return x print(gcd(n1, n2)) print((n1*n2)//gcd(n1, n2))
💡 코테
2022. 7. 14. 18:03
백준 10870번 피보나치 수 5
python n = int(input()) num_list = [0, 1] for i in range(2, n+1): num_list.append(num_list[i-1]+num_list[i-2]) print(num_list[n])
💡 코테
2022. 3. 4. 10:33
백준 2460 지능형 기차 2
python p = 0 p_list = [] for i in range(10): out, put = input().split() out = int(out) put = int(put) p = p - out + put p_list.append(p) p_list.sort(reverse = True) print(p_list[0])
💡 코테
2022. 3. 3. 01:00
백준 10818번 최소, 최대
python n = int(input()) num_list = list(map(int, input().split())) num_list.sort(reverse=False) print(num_list[0], num_list[n-1])
💡 코테
2022. 3. 2. 14:13
백준 3460 이진수
T = int(input()) for i in range(T): n = int(input()) s = bin(n) num = len(s) for i in range(1, num-1): if s[-i] == '1': print(i-1, end=' ') print() python
💡 코테
2022. 2. 28. 14:57