• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
HaibaraAi
博客园    首页    新随笔    联系   管理    订阅  订阅

Uva 11877 - The Coco-Cola Store

你为何这么叼!

The Coco-Cola Store

 Time limit: 1.000 seconds

 

� Once upon a time, there is a special coco-cola store. If you return three empty bottles to the shop, you'll get a full bottle of coco-cola to drink. If you have n empty bottles right in your hand, how many full bottles of coco-cola can you drink?

Input 

There will be at most 10 test cases, each containing a single line with an integer n ( 1$ \le$n$ \le$100). The input terminates with n = 0, which should not be processed.

Output 

For each test case, print the number of full bottles of coco-cola that you can drink.

Sample Input 

3
10
81
0

Sample Output 

1
5
40


Spoiler

Let me tell you how to drink 5 full bottles with 10 empty bottles: get 3 full bottles with 9 empty bottles, drink them to get 3 empty bottles, and again get a full bottle from them. Now you have 2 empty bottles. Borrow another empty bottle from the shop, then get another full bottle. Drink it, and finally return this empty bottle to the shop!

 


Problemsetter: Rujia Liu, Special Thanks: Yiming Li & Sohel Hafiz

 

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 using namespace std;
 5 #define maxn 555
 6 int n,m;
 7 int main(){
 8     while(scanf("%d",&n)&&n)
 9         printf("%d\n",n/2);
10     return 0;
11 }
View Code 2013-10-08 22:52:50 

 

posted @ 2013-10-08 22:52  HaibaraAi  阅读(124)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3