結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー fal_rndfal_rnd
提出日時 2020-02-05 04:26:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 73,092 KB
平均クエリ数 1.88
最終ジャッジ日時 2024-06-10 07:16:49
合計ジャッジ時間 10,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 324 ms
72,784 KB
testcase_03 AC 325 ms
72,676 KB
testcase_04 AC 226 ms
72,236 KB
testcase_05 AC 237 ms
72,224 KB
testcase_06 AC 239 ms
71,720 KB
testcase_07 AC 231 ms
71,708 KB
testcase_08 AC 244 ms
72,556 KB
testcase_09 AC 240 ms
72,196 KB
testcase_10 AC 239 ms
71,692 KB
testcase_11 WA -
testcase_12 AC 298 ms
72,588 KB
testcase_13 AC 242 ms
71,500 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 246 ms
71,984 KB
testcase_17 AC 265 ms
72,244 KB
testcase_18 AC 272 ms
72,012 KB
testcase_19 WA -
testcase_20 AC 307 ms
73,092 KB
testcase_21 AC 258 ms
72,228 KB
testcase_22 WA -
testcase_23 AC 259 ms
71,648 KB
testcase_24 AC 287 ms
72,964 KB
testcase_25 AC 205 ms
70,848 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)))
					end(R.subtract(ONE));
				break;
			}
		}
	}
}
0