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.

Input

The first line contains a single integer tt (1t100)(1≤t≤100)  — the number of testcases.

Each testcase consists of one line containing a single integer, xx (2x109)(2≤x≤109) .

Output

For each testcase, output a pair of positive integers aa and bb (1a,b109)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.

Example
Input
Copy
2
2
14
Output
Copy
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;
}
复制代码

 

posted @   脂环  阅读(282)  评论(0编辑  收藏  举报
编辑推荐:
· 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框架的用法!
点击右上角即可分享
微信分享提示
主题色彩