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 |
Tags
- 개념
- pypy3
- GROUP BY 절
- Codeforces Round #802 (Div. 2)
- Java11
- programmers
- 기본
- HAVING 절
- 명품 자바 프로그래밍
- 파이썬
- 응용
- java
- 백준
- Python
- 헤드퍼스트 디자인패턴
- SELECT 절
- 단계별로 풀어보기
- level1
- 기초
- 자바
- Codeup
- 이론
- SQLD / SQLP
- Python 3
- 공공데이터
- JAVA 11
- baekjoon
- 기초100제
- 코딩테스트
- BOJ
Archives
- Today
- Total
Development Project
[ Baekjoon - 단계별로 풀어보기(05/30) ] - 7단계 : 기본 수학 1 본문
- 1712 : 손익분기점
a,b,c=map(int, input().split())
print(-1 if b>=c else a//(c-b)+1)
#
a,b,c=map(int, input().split());print(-(b>=c)or a//(c-b)+1)
- 2292 : 벌집
n=int(input())
sum=1
for i in range(1,n+1):
if sum>=n or n==1:
print(i)
break
sum+=6*i
#
n = int(input())
a = 1
b = 1
while n > a:
a += 6*b
b+=1
print(b)
- 1193 : 분수찾기
a = int(input())
b=0
while a>0:
b+=1
a-=b
a+=b
b+=1
if b%2==0:
print(f"{b-a}/{a}")
else:
print(f"{a}/{b-a}")
- 2869 : 달팽이는 올라가고 싶다
import math
a,b,v=map(int,input().split())
print(math.ceil((v-b)/(a-b)))
- 10250 : ACM 호텔
K=int(input())
for i in range(K):
H,W,V=map(int,input().split())
F=((V-1)%H) +1
P=((V-1)//H)+1
print(F*100+P)
- 2775 : 부녀회장이 될테야
import math as m
for i in range(int(input())):
k,n=int(input()),int(input())
print(m.comb(k+n,k+1))
- 2839 : 설탕 배달
s=int(input());b=0;ok=0
while s>=0:
if s%5 ==0:
b+=(s//5)
print(b)
ok=1
break
s-=3
b+=1
if ok==0:
print(-1)
- 10757 : 큰 수 A+B
print(sum(map(int,input().split())))
'CodingTest > Baekjoon' 카테고리의 다른 글
[ Baekjoon - 단계별로 풀어보기(06/01) ] - 9단계 : 재귀 (0) | 2022.06.01 |
---|---|
[ Baekjoon - 단계별로 풀어보기(05/31) ] - 8단계 : 기본 수학 2 (0) | 2022.05.31 |
[ Baekjoon - 단계별로 풀어보기(05/29) ] - 6단계 : 문자열 (0) | 2022.05.30 |
[ Baekjoon - 단계별로 풀어보기(05/28) ] - 5단계 : 함수 (0) | 2022.05.29 |
[ Baekjoon - 단계별로 풀어보기(05/27) ] - 4단계 : 1차원 배열 (0) | 2022.05.28 |
Comments