結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー Ryuhei MoriRyuhei Mori
提出日時 2020-01-29 02:37:01
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 40,672 KB
平均クエリ数 2.35
最終ジャッジ日時 2024-06-10 07:11:34
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
38,984 KB
testcase_01 AC 93 ms
38,600 KB
testcase_02 AC 152 ms
40,664 KB
testcase_03 AC 205 ms
40,672 KB
testcase_04 AC 95 ms
39,656 KB
testcase_05 AC 101 ms
39,520 KB
testcase_06 AC 98 ms
39,008 KB
testcase_07 AC 94 ms
38,880 KB
testcase_08 AC 116 ms
40,032 KB
testcase_09 AC 98 ms
39,520 KB
testcase_10 AC 109 ms
39,392 KB
testcase_11 AC 106 ms
39,528 KB
testcase_12 AC 103 ms
39,392 KB
testcase_13 AC 99 ms
39,648 KB
testcase_14 AC 130 ms
40,544 KB
testcase_15 AC 116 ms
39,784 KB
testcase_16 AC 109 ms
39,528 KB
testcase_17 AC 114 ms
39,552 KB
testcase_18 AC 114 ms
40,160 KB
testcase_19 AC 126 ms
40,160 KB
testcase_20 AC 141 ms
40,544 KB
testcase_21 AC 114 ms
39,520 KB
testcase_22 AC 106 ms
39,640 KB
testcase_23 AC 153 ms
39,776 KB
testcase_24 AC 118 ms
40,032 KB
testcase_25 AC 89 ms
38,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-27)

(define (output-solution p q)
  (begin
    (display "! ")
    (display p)
    (display " ")
    (display q)
    (newline)
    (flush)))

(define n (read))

(define (itr)
  (let* ((a (+ (random-integer (- n 3)) 2)) (b (gcd n a)))
    (if (not (= b 1)) (output-solution b (/ n b))
    (begin
      (display "? ")
      (display a)
      (newline)
      (flush)
      (let1 r (read)
        (if (odd? r) (itr)
        (let1 x (expt-mod a (/ r 2) n)
        (if (= x (- n 1)) (itr)
        (let1 p (gcd n (+ x 1))
          (output-solution p (/ n p)))))))))))
  
(itr)
0