Codeforces Round #628 (Div. 2) A. EhAb AnD gCd
You are given a positive integer xx . Find any such 22 positive integers aa and bb such that GCD(a,b)+LCM(a,b)=xGCD(a,b)+LCM(a,b)=x .
As a reminder, GCD(a,b)GCD(a,b) is the greatest integer that divides both aa and bb . Similarly, LCM(a,b)LCM(a,b) is the smallest integer such that both aa and bb divide it.
It's guaranteed that the solution always exists. If there are several such pairs (a,b)(a,b) , you can output any of them.
The first line contains a single integer tt (1≤t≤100)(1≤t≤100) — the number of testcases.
Each testcase consists of one line containing a single integer, xx (2≤x≤109)(2≤x≤109) .
For each testcase, output a pair of positive integers aa and bb (1≤a,b≤109)1≤a,b≤109) such that GCD(a,b)+LCM(a,b)=xGCD(a,b)+LCM(a,b)=x . It's guaranteed that the solution always exists. If there are several such pairs (a,b)(a,b) , you can output any of them.
2 2 14
1 1 6 4
直接输出1和x-1即可。
#include <bits/stdc++.h> using namespace std; int main() { int t; cin>>t; while(t--) { int x; cin>>x; cout<<1<<' '<<x-1<<endl; } return 0; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!