Codeforces Round #411 A.Fake NP (思维题)

CodeForces - 805A Fake NP

Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path.
You are given l and r. For all integers from l to r, inclusive, we wrote down all of their integer divisors except 1. Find the integer that we wrote down the maximum number of times.
Solve the problem to show that it’s not a NP problem.
Input
The first line contains two integers l and r (2 ≤ l ≤ r ≤ 109).
Output
Print single integer, the integer that appears maximum number of times in the divisors.
If there are multiple answers, print any of them.

Example

Input
19 29
Output
2

Input
3 6
Output
3

题意:给一个区间 l到r,问这里面能被哪个数除净,且这个数能除净的数最多。

分析:
那么如果l==r的话就输出它自己就可以了
当l!=r的时候必定是2能除净的数最多,输出2
AC代码:

#include<stdio.h>
int main()
{
    int l,r;
    scanf("%d%d",&l,&r);
    if(l==r&&r%2==1)
    printf("%d\n",r);
    else
    printf("2\n");
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值