結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 249 ms
71,916 KB
testcase_02 AC 329 ms
72,552 KB
testcase_03 AC 325 ms
72,408 KB
testcase_04 AC 244 ms
71,704 KB
testcase_05 AC 238 ms
72,128 KB
testcase_06 AC 245 ms
71,660 KB
testcase_07 AC 236 ms
71,852 KB
testcase_08 AC 253 ms
72,036 KB
testcase_09 AC 244 ms
71,852 KB
testcase_10 AC 268 ms
72,012 KB
testcase_11 AC 306 ms
73,472 KB
testcase_12 AC 323 ms
72,176 KB
testcase_13 AC 269 ms
71,940 KB
testcase_14 AC 438 ms
72,380 KB
testcase_15 AC 435 ms
72,752 KB
testcase_16 AC 278 ms
72,044 KB
testcase_17 AC 286 ms
72,564 KB
testcase_18 AC 305 ms
72,372 KB
testcase_19 AC 449 ms
72,696 KB
testcase_20 AC 322 ms
73,564 KB
testcase_21 AC 273 ms
72,324 KB
testcase_22 AC 298 ms
73,244 KB
testcase_23 AC 295 ms
72,776 KB
testcase_24 AC 284 ms
73,232 KB
testcase_25 AC 233 ms
71,844 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){
		var gcd=r.gcd(n);
		if(!gcd.equals(n)&&!gcd.equals(ONE)){
			System.out.println("! "+gcd+" "+n.divide(gcd));
			return true;
		}
		return false;
	}

	static BigInteger n;

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

		for(int i=2;true;++i){
			System.out.println("? "+i);
			if(end(BigInteger.valueOf(i)))
				return;
			var r=s.nextBigInteger().divideAndRemainder(TWO);
			if(r[1].equals(ZERO)){
				var R=valueOf(i).modPow(r[0],n);
				if(end(R.add(ONE)))
					return;
				if(end(R.subtract(ONE)))
					return;
			}
		}
	}
}
0