其他分享
首页 > 其他分享> > [ACM] CF水题记

[ACM] CF水题记

作者:互联网

Codeforces Round #736 (Div. 2)

A_Gregor and Cryptography

题意: 给你一个素数,让你找到 两个数 a,b 满足

\[P mod a = P mod b \]

\[2 \le a <b \le P \]

思路:随便找几个数,我们就可以构造出

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
const int N = 1e5 + 10;

void solve()
{
    int n;
    cin >> n;
    if( n&1 ){  /// odd
        cout << 2 << " " << n-1 <<endl;
    }else{ /// even
        cout << 2 << " " << (n>>1) << endl;
    }
}

int main()
{
    ios::sync_with_stdio(false);
    cout.tie(nullptr);
    cin.tie(nullptr);

    int t;
    cin>> t;
    while(t--){
        solve();
    }
}

标签:输出,int,值为,CF,long,solve,ACM,题记,mod
来源: https://www.cnblogs.com/hoppz/p/15109223.html