Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코틀린
- n3문법
- 진짜일본어
- errorhandling
- 진짜학습지
- GIT
- suspend
- 학습지
- 책추천
- 책리뷰
- Android
- 일본어기초
- 안드로이드
- 일본어문법
- androidstudio
- github
- jlpt
- coroutine
- webflux
- ai
- blog
- posting
- 인공지능
- rxjava
- CustomTab
- 진짜학습지후기
- PR
- pullrequest
- KotlinInAction
- Kotlin
Archives
코딩하는 개굴이
[백준 ] 대회 or 인턴 (2875 번) 본문
반응형
import java.io.BufferedReader
import java.io.InputStreamReader
import java.lang.Integer.min
fun main() = with(BufferedReader(InputStreamReader(System.`in`))) {
val (n, m, k) = readLine().split(" ").map { it.toInt() }
var team: Int = min(n/2, m)
var intern = (n+m) - team * 3
while (intern < k) {
intern += 3
team-=1
}
println(team)
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 방 번호_1475 (0) | 2019.02.02 |
---|---|
BaekJoon/BOJ [JAVA] 부녀회장이 될테야_2775 (0) | 2019.02.02 |
BaekJoon/BOJ [JAVA] ACM호텔_10250 (0) | 2019.02.02 |
Fly me to the Alpha Centauri _1011 (0) | 2019.01.27 |
BaekJoon/BOJ [JAVA] 분수찾기_1193 (0) | 2019.01.19 |
Comments