結果
問題 | No.3056 量子コンピュータで素因数分解 Easy |
ユーザー | 37zigen |
提出日時 | 2020-02-05 10:43:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 932 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 76,948 KB |
実行使用メモリ | 102,100 KB |
平均クエリ数 | 0.08 |
最終ジャッジ日時 | 2024-06-10 07:17:39 |
合計ジャッジ時間 | 6,180 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.*; import java.io.*; import java.math.*; // This file is a "Hello, world!" in Java language by OpenJDK for wandbox. class Main { public static void main(String[] args) { new Main().run(); } void run(){ Scanner sc=new Scanner(System.in); BigInteger N=new BigInteger(sc.next()); for(int i=2;;++i){ System.out.println("? "+ i); int ord=ord(BigInteger.valueOf(i),N);//sc.nextInt(); if(ord%2==0) { BigInteger b=BigInteger.valueOf(i).modPow(BigInteger.valueOf(ord/2), N); b=b.add(BigInteger.ONE); b=b.divide(N); BigInteger p=N.gcd(b); System.out.println("! "+p+" "+N.divide(p)); return; } } } int ord(BigInteger a, BigInteger mod){ for(int i=1;;++i){ if(a.modPow(BigInteger.valueOf(i),mod).equals(BigInteger.ONE))return i; } } } // OpenJDK reference: // http://openjdk.java.net/ // Java language references: // http://docs.oracle.com/javase