結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー finefine
提出日時 2020-02-05 22:21:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 891 bytes
コンパイル時間 1,421 ms
コンパイル使用メモリ 169,416 KB
実行使用メモリ 821,320 KB
平均クエリ数 0.08
最終ジャッジ日時 2024-06-10 07:19:56
合計ジャッジ時間 3,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
25,196 KB
testcase_01 MLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ull = unsigned long long;

ull modpow(ull x, ull n, ull mod = -1) {
    ull res = 1;
    while (n > 0) {
        if (n & 1) res = res * x % mod;
        x = x * x % mod;
        n >>= 1;
    }
    return res;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ull n;
    cin >> n;
    
    mt19937 mt(0);
    uniform_int_distribution<> rnd(1, n - 1);
    
    ull p = 0, q = 0;
    do {
        p = rnd(mt);
        if (p % 2 == 0) continue;
        cout << "? " << p << endl;
        ull r;
        cin >> r;
        if (r % 2 == 1) continue;
        r >>= 1;
        ull hoge = modpow(p, r, n);
        if (hoge == 1 || hoge == n - 1) continue;
        p = __gcd(hoge + 1, n);
        q = __gcd(hoge + n - 1, n);
        break;
    } while (p * q != n);
    cout << "! " << p << " " << q << endl;
    return 0;
}
0