题解 | #KiKi和酸奶#
KiKi和酸奶
https://www.nowcoder.com/practice/c7721f3a1b1a47a783974453e82cadbb
#include <stdio.h>
int main() {
int a , b ,c ;
scanf("%d %d %d" , &a , &b , &c);
int result = 0;
if ( c % b == 0)
{
result = c / b ;
}else {
result = c / b + 1 ;
}
printf("%d" , a - result) ;
return 0;
}
