最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

CodeforcesRound#275(Div.2)ACountexample_html/css

来源:懂视网 责编:小采 时间:2020-11-27 15:56:56
文档

CodeforcesRound#275(Div.2)ACountexample_html/css

CodeforcesRound#275(Div.2)ACountexample_html/css_WEB-ITnose:题目链接:Counterexample Counterexample time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Your f
推荐度:
导读CodeforcesRound#275(Div.2)ACountexample_html/css_WEB-ITnose:题目链接:Counterexample Counterexample time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Your f

题目链接:Counterexample



Counterexample

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Your friend has recently learned about coprime numbers. A pair of numbers {a,?b} is called coprime if the maximum number that divides both a and b is equal to one.

Your friend often comes up with different statements. He has recently supposed that if the pair (a,?b) is coprime and the pair (b,?c) is coprime, then the pair (a,?c) is coprime.

You want to find a counterexample for your friend's statement. Therefore, your task is to find three distinct numbers (a,?b,?c), for which the statement is false, and the numbers meet the condition l?≤?a?

More specifically, you need to find three numbers (a,?b,?c), such that l?≤?a?

Input

The single line contains two positive space-separated integers l, r (1?≤?l?≤?r?≤?1018; r?-?l?≤?50).

Output

Print three positive space-separated integers a, b, c ? three distinct numbers (a,?b,?c) that form the counterexample. If there are several solutions, you are allowed to print any of them. The numbers must be printed in ascending order.

If the counterexample does not exist, print the single number -1.

Sample test(s)

input

2 4

output

2 3 4

input

10 11

output

-1

input

900000000000000009 900000000000000029

output

900000000000000009 900000000000000010 900000000000000021

Note

In the first sample pair (2,?4) is not coprime and pairs (2,?3) and (3,?4) are.

In the second sample you cannot form a group of three distinct integers, so the answer is -1.

In the third sample it is easy to see that numbers 900000000000000009 and 900000000000000021 are divisible by three.






大致题意:给定l和r,找出满足条件 l?≤?a?


解题思路:暴力枚举。枚举所有的情况,对每个情况进行判断。这种做法的前提是数据不大,数据要是大了,就不能这么直接暴力了。





AC代码:

#include #include #include #include #include #include #include #include #include #include #include #include using namespace std;#define INF 0x7fffffff#define LL long longLL gcd(LL a, LL b){ if(!b) return a; return gcd(b, a%b);}int main(){ #ifdef sxk freopen("in.txt","r",stdin); #endif LL l,r,a,b,c; while(scanf("%lld%lld",&l,&r)!=EOF) { int flag = 0; for(LL i=l; i<=r; i++){ for(LL j=i+1; j<=r; j++){ for(LL k=j+1; k<=r; k++){ if(gcd(i, j)==1 && gcd(j, k)==1 && gcd(i, k)!=1) { printf("%lld %lld %lld\n", i, j, k); flag = 1; break; } } if(flag) break; } if(flag) break; } if(!flag) printf("%d\n", -1); } return 0;}

文档

CodeforcesRound#275(Div.2)ACountexample_html/css

CodeforcesRound#275(Div.2)ACountexample_html/css_WEB-ITnose:题目链接:Counterexample Counterexample time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Your f
推荐度:
标签: css example div2
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top