/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB

Code

#include <iostream>

using namespace std;

int main()
{
    int t;
	cin >> t;
	int n, m;
	while (t-- && cin >> n >> m)
	{
		int mn = min(n, m);
		int ans = -1;
		for (int i = 2; i * i <= mn; i++)
		{
			if (n % i == 0 && m % i == 0)
			{
				ans = i;
				break;
			}
		}
		if (ans == -1 && mn > 1 && max(n, m) % mn == 0)
		{
			ans = mn;
		}
		cout << ans << "\n";
	}
}

Information

Submit By
Type
Pretest
Problem
P1011 LCD
Language
C++17 (G++ 13.2.0)
Submit At
2023-12-27 23:07:31
Judged At
2023-12-27 23:07:31
Judged By
Score
10
Total Time
1ms
Peak Memory
540.0 KiB