2015年NEUACM一月月赛 J: Eliminate zero AC

问题 J: Eliminate zero AC

时间限制: 1 Sec  内存限制: 128 MB

题目描述

Last night,Kid submitted a problem for many times but he got many WA,so he is sad.Out of

sympathy, his coach gave him a very simple problem so that Kid can solve it quickly. The problem

is to select as many numbers as possible range 1 to n so that among these selected number there

are no number can be divided exactly by other number. Can you solve it as quick as Kid?

 

输入

There are multiple cases.

For each case, there is a integer n(1<=n<=10^9)

 

输出

For each case,just output the answer.(the most numbers you can select)

 

样例输入

5

样例输出

3

提示

 

You can select {2,3,5} or {3,4,5}... but you can’t select {2,3,4,5} because 2|4.


So the answer is 3.

题解:有规律。详见代码。

 

 1 #include <stdio.h>
 2  
 3 int main()
 4 {
 5 #ifdef CDZSC_OFFLINE
 6     freopen("in.txt", "r", stdin);
 7     freopen("out.txt", "w", stdout);
 8 #endif
 9     int n;
10     while(~scanf("%d", &n))
11     {
12         if(n % 2)
13             printf("%d\n", (n >> 1) + 1);
14         else
15             printf("%d\n", n >> 1);
16     }
17     return 0;
18 }
View Code

 

 

转载于:https://www.cnblogs.com/LiuACG/p/4264443.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值