結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー Ryuhei MoriRyuhei Mori
提出日時 2020-01-27 18:35:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 3,690 ms
コンパイル使用メモリ 79,596 KB
実行使用メモリ 60,852 KB
平均クエリ数 2.31
最終ジャッジ日時 2024-06-10 07:10:53
合計ジャッジ時間 10,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
59,008 KB
testcase_01 AC 216 ms
59,460 KB
testcase_02 AC 273 ms
59,640 KB
testcase_03 AC 281 ms
60,464 KB
testcase_04 AC 198 ms
59,064 KB
testcase_05 AC 199 ms
59,392 KB
testcase_06 AC 210 ms
58,800 KB
testcase_07 AC 221 ms
59,612 KB
testcase_08 AC 202 ms
58,972 KB
testcase_09 AC 219 ms
59,348 KB
testcase_10 AC 210 ms
59,504 KB
testcase_11 AC 221 ms
59,784 KB
testcase_12 AC 265 ms
60,556 KB
testcase_13 AC 215 ms
59,636 KB
testcase_14 AC 253 ms
60,264 KB
testcase_15 AC 271 ms
60,620 KB
testcase_16 AC 223 ms
59,184 KB
testcase_17 AC 213 ms
59,516 KB
testcase_18 AC 219 ms
59,404 KB
testcase_19 AC 288 ms
60,852 KB
testcase_20 AC 277 ms
60,624 KB
testcase_21 AC 224 ms
58,928 KB
testcase_22 AC 210 ms
59,556 KB
testcase_23 AC 236 ms
59,048 KB
testcase_24 AC 241 ms
60,824 KB
testcase_25 AC 179 ms
59,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Random;
import java.io.IOException;
import java.math.BigInteger;

public class ShorSolve {
  static BigInteger n;

  static BigInteger randomBigInteger(){
    int bitlen = n.bitLength();
    BigInteger r;
    Random rnd = new Random();
    do {
      r = new BigInteger(bitlen, rnd);
    } while(r.equals(BigInteger.ZERO) || r.compareTo(n) >= 0);
    return r;
  }

  public static void main(String[] args) throws Exception {
    Scanner sc = new Scanner(System.in);
    n = sc.nextBigInteger();
    while(true){
      BigInteger a = randomBigInteger();
      BigInteger b = n.gcd(a);
      if(!b.equals(BigInteger.ONE)){
        System.out.println("! " + b + " " + n.divide(b));
        break;
      }
      System.out.println("? " + a);
      BigInteger r = sc.nextBigInteger();
      if(r.testBit(0)){
        continue;
      }
      r = r.shiftRight(1);
      a = a.modPow(r, n);
      if(a.equals(n.subtract(BigInteger.ONE))){
        continue;
      }
      BigInteger p = n.gcd(a.add(BigInteger.ONE));
      BigInteger q = n.divide(p);
      System.out.println("! " + p + " " + q);
      break;
    }
  }
}
0