카타 7급 Going to the cinema

Jmnote (토론 | 기여)님의 2019년 4월 21일 (일) 14:52 판 (→‎R)

1 Kotlin

2 R

movie <- function(card, ticket, perc) {
  n <- 1
  while(TRUE) {
    a <- ticket * n
    b <- ceiling( card + ticket*perc*(1-perc^n) / (1-perc) )
    if( a > b ) break
    n <- n + 1
  }
  n
}
movie <- function(card, ticket, perc) {
  n = 1:10000
  min(which(ceiling(card + ticket * cumsum(perc^n)) < ticket * n))
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}