結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー PachicobuePachicobue
提出日時 2020-02-05 13:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 72,416 KB
平均クエリ数 2.42
最終ジャッジ日時 2024-06-10 07:19:40
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
70,728 KB
testcase_01 AC 90 ms
70,600 KB
testcase_02 AC 141 ms
72,280 KB
testcase_03 AC 142 ms
72,144 KB
testcase_04 AC 89 ms
70,880 KB
testcase_05 AC 94 ms
71,400 KB
testcase_06 AC 105 ms
71,552 KB
testcase_07 AC 94 ms
71,196 KB
testcase_08 AC 99 ms
70,708 KB
testcase_09 AC 95 ms
71,264 KB
testcase_10 AC 100 ms
71,040 KB
testcase_11 AC 100 ms
71,160 KB
testcase_12 AC 117 ms
71,696 KB
testcase_13 AC 108 ms
71,136 KB
testcase_14 AC 103 ms
70,624 KB
testcase_15 AC 121 ms
71,392 KB
testcase_16 AC 129 ms
71,392 KB
testcase_17 AC 107 ms
71,144 KB
testcase_18 AC 107 ms
71,816 KB
testcase_19 AC 127 ms
72,416 KB
testcase_20 AC 137 ms
71,520 KB
testcase_21 AC 133 ms
71,392 KB
testcase_22 AC 140 ms
71,904 KB
testcase_23 AC 123 ms
71,008 KB
testcase_24 AC 118 ms
71,136 KB
testcase_25 AC 86 ms
70,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import random
import sys
N = int(input())
if N%2==0:
    print('!',2,N//2, flush=True)
    sys.exit(0)
while True:
    a = random.randint(2,N-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)
    if g != 1:
        print('!',g,N//g, flush=True)
        sys.exit(0)
    
0