結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー ecotteaecottea
提出日時 2022-10-19 02:19:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 74,300 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-29 07:41:19
合計ジャッジ時間 4,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
69,500 KB
testcase_01 AC 104 ms
70,268 KB
testcase_02 AC 141 ms
70,800 KB
testcase_03 AC 141 ms
69,972 KB
testcase_04 AC 92 ms
69,828 KB
testcase_05 AC 92 ms
69,960 KB
testcase_06 AC 93 ms
69,304 KB
testcase_07 AC 92 ms
69,956 KB
testcase_08 AC 99 ms
69,948 KB
testcase_09 AC 95 ms
68,872 KB
testcase_10 AC 96 ms
69,640 KB
testcase_11 AC 116 ms
70,188 KB
testcase_12 AC 141 ms
70,572 KB
testcase_13 AC 96 ms
69,684 KB
testcase_14 AC 203 ms
74,300 KB
testcase_15 AC 211 ms
70,308 KB
testcase_16 AC 110 ms
70,016 KB
testcase_17 AC 110 ms
70,996 KB
testcase_18 AC 109 ms
70,588 KB
testcase_19 AC 208 ms
72,444 KB
testcase_20 AC 133 ms
70,716 KB
testcase_21 AC 111 ms
69,760 KB
testcase_22 AC 119 ms
70,328 KB
testcase_23 AC 120 ms
70,592 KB
testcase_24 AC 113 ms
70,356 KB
testcase_25 AC 88 ms
69,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

for a in range(2, 1000):
    g = math.gcd(a, n)
    if g > 1:
        print("!", g, n // g)
        exit(0)

    print("?", a)

    r = int(input())
    if r % 2 == 1:
        continue

    pow_a = pow(a, r // 2, mod=n)
    if pow_a == n - 1:
        continue

    p = math.gcd(pow_a + 1, n)
    q = math.gcd(pow_a - 1, n)

    if p * q == n:
        print("!", p, q)
        break
0