Submission #2545169


Source Code Expand

#include<iostream>
using namespace std;
int main()
{
	long long a,b;
	cin>>a>>b;
	if(a==b)cout<<-1<<endl;
	else if(a!=b)
	{
	for(long long i=a+1;i<=1000000000000000000;i++)
	{
	    if(i%a==0&&i%b!=0)
		{
		    cout<<i<<endl;
		    return 0;
	    }
    }
	return 0;
    }
}

Submission Info

Submission Time
Task A - Two Integers
User luogu_bot3
Language C++ (GCC 5.4.1)
Score 0
Code Size 291 Byte
Status TLE
Exec Time 2103 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 2
AC × 8
TLE × 6
Set Name Test Cases
Sample 0_000.txt, 0_001.txt
All 0_000.txt, 0_001.txt, 1_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
1_002.txt AC 1 ms 256 KB
1_003.txt AC 1 ms 256 KB
1_004.txt TLE 2103 ms 256 KB
1_005.txt AC 1 ms 256 KB
1_006.txt AC 1 ms 256 KB
1_007.txt TLE 2103 ms 256 KB
1_008.txt TLE 2103 ms 256 KB
1_009.txt AC 3 ms 256 KB
1_010.txt TLE 2103 ms 256 KB
1_011.txt TLE 2103 ms 256 KB
1_012.txt AC 1025 ms 256 KB
1_013.txt TLE 2103 ms 256 KB
for_sample.txt AC 1 ms 256 KB