結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 238 ms
71,876 KB
testcase_02 AC 324 ms
72,536 KB
testcase_03 AC 325 ms
72,580 KB
testcase_04 AC 228 ms
71,780 KB
testcase_05 AC 239 ms
72,056 KB
testcase_06 AC 238 ms
72,048 KB
testcase_07 AC 245 ms
71,796 KB
testcase_08 AC 247 ms
71,840 KB
testcase_09 AC 257 ms
72,004 KB
testcase_10 AC 239 ms
71,860 KB
testcase_11 AC 299 ms
73,596 KB
testcase_12 AC 288 ms
72,080 KB
testcase_13 AC 237 ms
71,880 KB
testcase_14 AC 460 ms
72,040 KB
testcase_15 AC 446 ms
73,408 KB
testcase_16 AC 252 ms
71,924 KB
testcase_17 AC 250 ms
71,748 KB
testcase_18 AC 255 ms
72,812 KB
testcase_19 AC 438 ms
72,632 KB
testcase_20 AC 311 ms
73,172 KB
testcase_21 AC 249 ms
71,936 KB
testcase_22 AC 305 ms
73,880 KB
testcase_23 AC 276 ms
72,272 KB
testcase_24 AC 289 ms
72,872 KB
testcase_25 AC 218 ms
71,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(BigInteger.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(long i=2;true;++i){
			System.out.println("? "+i);

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