Codeforces--805A--Fake NP

73 篇文章 0 订阅

题目描述:
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.
输入描述:
The first line contains two integers l and r (2 ≤ l ≤ r ≤ 109).
输出描述:
Print single integer, the integer that appears maximum number of times in the divisors.
If there are multiple answers, print any of them.
输入:
19 29
3 6
输出:
2
3
题意:
记下这些整数的所有的整数除数(除了1之外)并从这些整数除数中找出出现次数最多的那个整数除数。若出现次数最多的那个数有多个,则任意输出一个即可。
题解
左右相等的话,直接输出自身。如果右端点大于2,肯定是2最多。
代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;

int main(){
    int l,r;
    while(scanf("%d%d",&l,&r)!=EOF){
        if(l == r) printf("%d\n",l);
        else if(r > 2) printf("2\n");
        else printf("1\n");
    }
    return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值