CF Little Artem andPresents 分糖果的小问题

Little Artem andPresents

Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Submit Status

Description

LittleArtem got n stones on hisbirthday and now wants to give some of them to Masha. He knows that Masha caresmore about the fact of receiving the present, rather than the value of thatpresent, so he wants to give her stones as many times as possible. However,Masha remembers the last present she received, so Artem can't give her the samenumber of stones twice in a row. For example, he can give her3 stones,then 1 stone, then again 3 stones,but he can't give her 3 stonesand then again 3 stones rightafter that.

Howmany times can Artem give presents to Masha?

Input

Theonly line of the input contains a single integer n (1 ≤ n ≤ 109) —number of stones Artem received on his birthday.

Output

Printthe maximum possible number of times Artem can give presents to Masha.

Sample Input

Input

1

Output

1

Input

2

Output

1

Input

3

Output

2

Input

4

Output

3

 

题意:你有 n 个糖果,想要送给自己钟意的人,两次送的个数不能够相同,问有多少种送法。

 

解法:想要玩的时间最长,就 1,2,1,2,1,2,1,2……的送。



/*=============================AC情况===============================*/
/*题目网址:   */
/*时间: */
/*心得: 还以为有递推公式,看到 n 的范围。。。。  */

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define G 100

int main() {
	int n,ans;
	while(scanf("%d",&n)!=EOF) {
		ans=2*(n/3);
		if(n%3!=0) {
			ans++;
		}
		printf("%d\n",ans);
	}
	return 0;
}

/*********************************测试数据*********************************


**************************************************************************/


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值