[CF1065A]Vasya and Chocolate
Posted memory-of-winter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CF1065A]Vasya and Chocolate相关的知识,希望对你有一定的参考价值。
题目大意:有$s$元,一个物品$c$元,每买$a$个就送$b$个,问一共可以买多少。
题解:全部买好,最后看可以送多少(其实是因为我这道题交错了,无聊才做的)
卡点:无
C++ Code:
#include <cstdio> int Tim; int main() { scanf("%d", &Tim); while (Tim --> 0) { long long s, a, b, c; scanf("%lld%lld%lld%lld", &s, &a, &b, &c); long long tmp = s / c; tmp += tmp / a * b; printf("%lld ", tmp); } return 0; }
以上是关于[CF1065A]Vasya and Chocolate的主要内容,如果未能解决你的问题,请参考以下文章
[CF1073C] Vasya and Robot - 尺取法
[CF1073C] Vasya and Robot - 尺取法
[CF1030E]Vasya and Good Sequences
cf#512 C. Vasya and Golden Ticket