結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー 37zigen37zigen
提出日時 2020-02-05 11:35:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 1,148 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 80,116 KB
実行使用メモリ 61,380 KB
平均クエリ数 3.12
最終ジャッジ日時 2024-06-10 07:18:41
合計ジャッジ時間 10,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
58,708 KB
testcase_01 AC 210 ms
59,212 KB
testcase_02 AC 278 ms
60,104 KB
testcase_03 AC 277 ms
60,788 KB
testcase_04 AC 206 ms
59,500 KB
testcase_05 AC 204 ms
59,404 KB
testcase_06 AC 202 ms
59,828 KB
testcase_07 AC 202 ms
59,944 KB
testcase_08 AC 206 ms
59,712 KB
testcase_09 AC 204 ms
59,828 KB
testcase_10 AC 218 ms
59,356 KB
testcase_11 AC 252 ms
60,632 KB
testcase_12 AC 258 ms
59,660 KB
testcase_13 AC 215 ms
59,464 KB
testcase_14 AC 360 ms
59,864 KB
testcase_15 AC 355 ms
61,124 KB
testcase_16 AC 225 ms
60,020 KB
testcase_17 AC 219 ms
59,876 KB
testcase_18 AC 238 ms
60,440 KB
testcase_19 AC 361 ms
60,776 KB
testcase_20 AC 262 ms
60,568 KB
testcase_21 AC 217 ms
59,552 KB
testcase_22 AC 245 ms
60,820 KB
testcase_23 AC 228 ms
59,508 KB
testcase_24 AC 254 ms
61,380 KB
testcase_25 AC 184 ms
59,188 KB
権限があれば一括ダウンロードができます

ソースコード

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);
			BigInteger ord=new BigInteger(sc.next());
			if(ord.mod(BigInteger.TWO).equals(BigInteger.ZERO)) {
				BigInteger b=BigInteger.valueOf(i).modPow(ord.divide(BigInteger.TWO), 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