結果

問題 No.8056 量子コンピュータで素因数分解 Easy
ユーザー Ryuhei MoriRyuhei Mori
提出日時 2020-01-29 02:37:01
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 40,416 KB
平均クエリ数 2.35
最終ジャッジ日時 2024-12-31 19:19:56
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
38,984 KB
testcase_01 AC 119 ms
38,992 KB
testcase_02 AC 179 ms
40,032 KB
testcase_03 AC 240 ms
40,288 KB
testcase_04 AC 115 ms
39,136 KB
testcase_05 AC 123 ms
39,656 KB
testcase_06 AC 120 ms
39,008 KB
testcase_07 AC 114 ms
39,520 KB
testcase_08 AC 138 ms
39,776 KB
testcase_09 AC 118 ms
39,528 KB
testcase_10 AC 127 ms
39,136 KB
testcase_11 AC 126 ms
39,528 KB
testcase_12 AC 130 ms
39,264 KB
testcase_13 AC 122 ms
39,528 KB
testcase_14 AC 155 ms
40,416 KB
testcase_15 AC 136 ms
39,384 KB
testcase_16 AC 132 ms
39,904 KB
testcase_17 AC 136 ms
39,520 KB
testcase_18 AC 138 ms
39,776 KB
testcase_19 AC 147 ms
39,656 KB
testcase_20 AC 164 ms
39,776 KB
testcase_21 AC 133 ms
39,656 KB
testcase_22 AC 130 ms
39,272 KB
testcase_23 AC 185 ms
40,040 KB
testcase_24 AC 142 ms
39,648 KB
testcase_25 AC 108 ms
38,880 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