結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー koprickykopricky
提出日時 2020-02-06 04:51:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 73,900 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-10 07:21:41
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
69,980 KB
testcase_01 AC 101 ms
69,224 KB
testcase_02 AC 142 ms
70,472 KB
testcase_03 AC 141 ms
71,396 KB
testcase_04 AC 93 ms
70,476 KB
testcase_05 AC 96 ms
69,920 KB
testcase_06 AC 100 ms
69,392 KB
testcase_07 AC 97 ms
69,328 KB
testcase_08 AC 102 ms
69,404 KB
testcase_09 AC 103 ms
70,028 KB
testcase_10 AC 97 ms
69,348 KB
testcase_11 AC 117 ms
70,068 KB
testcase_12 AC 145 ms
69,664 KB
testcase_13 AC 99 ms
70,064 KB
testcase_14 AC 208 ms
73,900 KB
testcase_15 AC 219 ms
71,624 KB
testcase_16 AC 105 ms
70,228 KB
testcase_17 AC 109 ms
69,808 KB
testcase_18 AC 109 ms
69,224 KB
testcase_19 AC 199 ms
72,268 KB
testcase_20 AC 131 ms
70,104 KB
testcase_21 AC 107 ms
69,660 KB
testcase_22 AC 117 ms
70,528 KB
testcase_23 AC 118 ms
70,188 KB
testcase_24 AC 112 ms
71,332 KB
testcase_25 AC 91 ms
70,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
N = int(input())
a = 1
while True:
    a += 1
    if N%a==0:
        print('!',a,N//a, flush=True)
        sys.exit(0)
    print('?',a, flush=True)
    p = int(input())
    if p%2==1:
        continue
    b = pow(a,p//2,N)+1
    if b == N:
        continue
    g = math.gcd(b, N)
    print('!',g,N//g, flush=True)
    sys.exit(0)
0