結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー fal_rndfal_rnd
提出日時 2020-02-05 03:30:53
言語 Java21
(openjdk 21)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 722 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 79,588 KB
実行使用メモリ 73,832 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-10 07:16:17
合計ジャッジ時間 11,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 242 ms
72,244 KB
testcase_02 AC 317 ms
72,440 KB
testcase_03 AC 323 ms
72,888 KB
testcase_04 AC 227 ms
71,856 KB
testcase_05 AC 238 ms
72,036 KB
testcase_06 AC 241 ms
71,988 KB
testcase_07 AC 238 ms
72,260 KB
testcase_08 AC 232 ms
71,780 KB
testcase_09 AC 235 ms
71,912 KB
testcase_10 AC 245 ms
72,436 KB
testcase_11 AC 300 ms
73,604 KB
testcase_12 AC 291 ms
72,360 KB
testcase_13 AC 241 ms
71,748 KB
testcase_14 AC 416 ms
72,628 KB
testcase_15 AC 404 ms
73,616 KB
testcase_16 AC 254 ms
72,028 KB
testcase_17 AC 251 ms
71,524 KB
testcase_18 AC 271 ms
72,164 KB
testcase_19 AC 439 ms
72,860 KB
testcase_20 AC 302 ms
72,936 KB
testcase_21 AC 252 ms
71,660 KB
testcase_22 AC 286 ms
73,088 KB
testcase_23 AC 262 ms
71,912 KB
testcase_24 AC 291 ms
73,832 KB
testcase_25 AC 214 ms
71,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.math.BigInteger.*;
import java.math.*;
import java.util.*;

// https://speakerdeck.com/gyudon/shorfalsearugorizumu?slide=7

class Main{
	static boolean end(BigInteger r,BigInteger n){
		var gcd=r.gcd(n);
		if(!gcd.equals(n)&&!gcd.equals(ONE)){
			System.out.println("! "+gcd+" "+n.divide(gcd));
			return true;
		}
		return false;
	}

	public static void main(String[] $){
		var s=new Scanner(System.in);
		var n=s.nextBigInteger();

		for(int i=2;true;++i){
			System.out.println("? "+i);

			var r=s.nextBigInteger().divideAndRemainder(TWO);
			if(r[1].equals(ZERO)){
				var R=valueOf(i).modPow(r[0],n);
				if(end(R.add(ONE),n))
					return;
				if(end(R.subtract(ONE),n))
					return;
			}
		}
	}
}
0