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 |
Tags
- 학습지
- CustomTab
- rxjava
- 코틀린
- webflux
- 인공지능
- 진짜학습지후기
- coroutine
- pullrequest
- 책추천
- 진짜일본어
- errorhandling
- Android
- 안드로이드
- jlpt
- KotlinInAction
- ai
- n3문법
- 진짜학습지
- blog
- github
- posting
- PR
- 일본어기초
- suspend
- androidstudio
- 책리뷰
- 일본어문법
- GIT
- 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