結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー fal_rndfal_rnd
提出日時 2020-02-05 04:29:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 73,436 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-06-10 07:17:11
合計ジャッジ時間 11,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
71,176 KB
testcase_01 AC 217 ms
71,164 KB
testcase_02 AC 298 ms
72,616 KB
testcase_03 AC 296 ms
72,524 KB
testcase_04 AC 224 ms
72,200 KB
testcase_05 AC 203 ms
71,512 KB
testcase_06 AC 210 ms
71,408 KB
testcase_07 AC 224 ms
72,180 KB
testcase_08 AC 221 ms
72,544 KB
testcase_09 AC 210 ms
71,604 KB
testcase_10 AC 222 ms
71,476 KB
testcase_11 AC 268 ms
73,352 KB
testcase_12 AC 254 ms
72,380 KB
testcase_13 AC 225 ms
71,428 KB
testcase_14 AC 376 ms
72,364 KB
testcase_15 AC 367 ms
73,436 KB
testcase_16 AC 241 ms
72,028 KB
testcase_17 AC 243 ms
71,836 KB
testcase_18 AC 264 ms
72,348 KB
testcase_19 AC 385 ms
72,816 KB
testcase_20 AC 287 ms
72,816 KB
testcase_21 AC 228 ms
71,936 KB
testcase_22 AC 296 ms
72,892 KB
testcase_23 AC 251 ms
72,200 KB
testcase_24 AC 251 ms
72,608 KB
testcase_25 AC 200 ms
71,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
	static boolean end(BigInteger r){
		var gcd=r.gcd(n);
		if(gcd.equals(n)||gcd.equals(ONE))
			return false;
		System.out.println("! "+gcd+" "+n.divide(gcd));
		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)))
					break;
				if(end(R.subtract(ONE)))
					break;
			}
		}
	}
}
0