結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー 👑 MizarMizar
提出日時 2022-09-11 20:21:20
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 63,072 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-10 07:27:35
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
57,296 KB
testcase_01 AC 94 ms
57,680 KB
testcase_02 AC 139 ms
58,952 KB
testcase_03 AC 141 ms
58,584 KB
testcase_04 AC 91 ms
57,696 KB
testcase_05 AC 93 ms
57,312 KB
testcase_06 AC 94 ms
57,952 KB
testcase_07 AC 91 ms
57,824 KB
testcase_08 AC 96 ms
57,568 KB
testcase_09 AC 94 ms
58,208 KB
testcase_10 AC 94 ms
57,952 KB
testcase_11 AC 116 ms
58,592 KB
testcase_12 AC 139 ms
58,592 KB
testcase_13 AC 95 ms
58,080 KB
testcase_14 AC 233 ms
63,072 KB
testcase_15 AC 209 ms
61,008 KB
testcase_16 AC 103 ms
58,208 KB
testcase_17 AC 107 ms
59,348 KB
testcase_18 AC 109 ms
57,568 KB
testcase_19 AC 197 ms
59,104 KB
testcase_20 AC 127 ms
58,464 KB
testcase_21 AC 106 ms
57,780 KB
testcase_22 AC 115 ms
58,336 KB
testcase_23 AC 116 ms
57,952 KB
testcase_24 AC 109 ms
57,952 KB
testcase_25 AC 87 ms
57,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const modpow = (a, b, n) => {
    while((b & 1n) == 0n) { b >>= 1n; a = a * a % n; }
    let r = a;
    while(true) {
        b >>= 1n;
        if(b == 0n) { return r; }
        a = a * a % n;
        if((b & 1n) != 0) { r = r * a % n; }
    }
};
const gcd = (a, b) => {
    while(b != 0n) { let t = a % b; a = b; b = t; }
    return a;
};

const hrStart = process.hrtime();
let n = null;
let a = 2n;
process.stdin.setEncoding("utf8");
const reader = require("readline").createInterface({input: process.stdin});
const checkgcd = (x) => {
    let g = gcd(n, x);
    if (g > 1n && g < n) {
        console.log(`! ${g} ${n/g}`);
        const hrEnd = process.hrtime(hrStart);
        console.error(`${hrEnd[0]*1e3+hrEnd[1]/1e6}ms`);
        process.exit();
    }
}
reader.on("line", (l) => {
    if (n === null) {
        n = BigInt(l);
    } else {
        let r = BigInt(l);
        let t = modpow(a, r >> 1n, n);
        checkgcd(t - 1n);
        checkgcd(t + 1n);
        a += 1n;
        checkgcd(a);
    }
    console.log(`? ${a}`);
});
0