結果

問題 No.8056 量子コンピュータで素因数分解 Easy
ユーザー 37zigen
提出日時 2020-02-05 10:36:42
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 76,880 KB
実行使用メモリ 72,916 KB
平均クエリ数 1.12
最終ジャッジ日時 2024-12-31 19:40:47
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 1 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){
			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);
				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;
		}
	}
}

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

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