結果
| 問題 | No.8056 量子コンピュータで素因数分解 Easy |
| ユーザー |
|
| 提出日時 | 2020-02-05 13:43:51 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 433 bytes |
| 記録 | |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 97,996 KB |
| 平均クエリ数 | 0.04 |
| 最終ジャッジ日時 | 2026-06-05 08:43:10 |
| 合計ジャッジ時間 | 4,414 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 24 |
ソースコード
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)