"카타 7급 Going to the cinema"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==Kotlin==
{{카타|7급|Kotlin|1}}
<source lang='kotlin'>
</source>
<source lang='kotlin'>
</source>
<source lang='kotlin'>
</source>
==R==
==R==
{{카타|7급|R|2}}
{{카타|7급|R|2}}

2019년 4월 21일 (일) 14:52 판

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 }}