結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー fal_rndfal_rnd
提出日時 2020-02-05 04:33:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 61,584 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-10 07:17:32
合計ジャッジ時間 9,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
59,584 KB
testcase_01 AC 211 ms
59,412 KB
testcase_02 AC 278 ms
60,900 KB
testcase_03 AC 290 ms
60,228 KB
testcase_04 AC 199 ms
59,780 KB
testcase_05 AC 211 ms
59,600 KB
testcase_06 AC 217 ms
59,680 KB
testcase_07 AC 201 ms
59,952 KB
testcase_08 AC 246 ms
59,712 KB
testcase_09 AC 200 ms
59,620 KB
testcase_10 AC 222 ms
59,344 KB
testcase_11 AC 261 ms
61,172 KB
testcase_12 AC 261 ms
59,960 KB
testcase_13 AC 219 ms
59,616 KB
testcase_14 AC 400 ms
60,456 KB
testcase_15 AC 372 ms
60,464 KB
testcase_16 AC 221 ms
60,152 KB
testcase_17 AC 236 ms
60,020 KB
testcase_18 AC 246 ms
60,568 KB
testcase_19 AC 367 ms
60,800 KB
testcase_20 AC 261 ms
60,692 KB
testcase_21 AC 220 ms
59,532 KB
testcase_22 AC 258 ms
61,584 KB
testcase_23 AC 242 ms
59,640 KB
testcase_24 AC 257 ms
61,092 KB
testcase_25 AC 204 ms
58,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	static BigInteger n;

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

		for(int i=2;!end(valueOf(i));++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))||end(R.subtract(ONE)))
					break;
			}
		}
	}
}
0