結果

問題 No.8056 量子コンピュータで素因数分解 Easy
ユーザー 37zigen
提出日時 2020-02-05 11:07:21
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 2,810 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 73,020 KB
平均クエリ数 1.19
最終ジャッジ日時 2024-12-31 19:40:33
合計ジャッジ時間 10,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 RE * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// This file is a "Hello, world!" in Java language by OpenJDK for wandbox.

class Main
{
    public static void main(String[] args)
    {
		new Main().run();
    }
	
	void run(){
		Scanner sc=new Scanner(System.in);
		BigInteger N=new BigInteger(sc.next());
		for(int i=2;;++i){
			if(!N.gcd(BigInteger.valueOf(i)).equals(BigInteger.ONE))continue;
			System.out.println("? "+ i);
			int ord=sc.nextInt();
			if(ord%2==0) {
				BigInteger b=BigInteger.valueOf(i).modPow(BigInteger.valueOf(ord/2), N);
				b=b.add(BigInteger.ONE);
				BigInteger p=N.gcd(b);
				if(!p.equals(BigInteger.ONE)&&!p.equals(N)) {
					System.out.println("! "+p+" "+N.divide(p));
					return;
				}
			}
		}
	}
	int ord(BigInteger a, BigInteger mod){
		for(int i=1;;++i){
			if(a.modPow(BigInteger.valueOf(i),mod).equals(BigInteger.ONE))return i;
		}
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

// OpenJDK reference:
//   http://openjdk.java.net/

// Java language references:
//   http://docs.oracle.com/javase
0