結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー ecotteaecottea
提出日時 2022-10-19 02:01:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,872 KB
平均クエリ数 24.15
最終ジャッジ日時 2024-06-29 07:27:40
合計ジャッジ時間 14,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
27,600 KB
testcase_01 AC 162 ms
27,600 KB
testcase_02 AC 1,352 ms
27,488 KB
testcase_03 AC 1,371 ms
27,488 KB
testcase_04 AC 174 ms
27,360 KB
testcase_05 AC 195 ms
27,360 KB
testcase_06 AC 229 ms
27,496 KB
testcase_07 AC 161 ms
27,616 KB
testcase_08 AC 262 ms
27,488 KB
testcase_09 AC 256 ms
27,488 KB
testcase_10 AC 268 ms
27,616 KB
testcase_11 WA -
testcase_12 AC 406 ms
27,488 KB
testcase_13 AC 240 ms
27,616 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 464 ms
27,240 KB
testcase_17 AC 540 ms
27,488 KB
testcase_18 AC 576 ms
27,488 KB
testcase_19 WA -
testcase_20 AC 1,131 ms
27,488 KB
testcase_21 AC 555 ms
27,488 KB
testcase_22 WA -
testcase_23 AC 813 ms
27,360 KB
testcase_24 AC 636 ms
27,616 KB
testcase_25 AC 85 ms
27,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

a_list = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]

ord_max = 0
a_max = -1

for a in a_list:
    if (n % a == 0):
        print("!", a, n // a)
        exit(0)

    print("?", a)

    r = int(input())

    if ord_max < r:
        ord_max = r
        a_max = a

pow_a = pow(a_max, ord_max // 2, mod=n)

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

print("!", p, q)
0