結果

問題 No.8056 量子コンピュータで素因数分解 Easy
ユーザー Pachicobue
提出日時 2020-02-05 13:43:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 433 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 110,744 KB
平均クエリ数 0.08
最終ジャッジ日時 2024-12-31 19:49:39
合計ジャッジ時間 74,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 2 TLE * 24
権限があれば一括ダウンロードができます

ソースコード

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!=0  and b!=N and N%b==0:
        print('!',b,N//b, flush=True)
        sys.exit(0)
    
0