結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
33,736 KB
testcase_01 AC 91 ms
33,992 KB
testcase_02 AC 134 ms
34,136 KB
testcase_03 AC 140 ms
34,272 KB
testcase_04 AC 83 ms
33,888 KB
testcase_05 AC 87 ms
33,632 KB
testcase_06 AC 88 ms
33,512 KB
testcase_07 AC 83 ms
33,888 KB
testcase_08 AC 90 ms
33,504 KB
testcase_09 AC 87 ms
33,384 KB
testcase_10 AC 89 ms
33,888 KB
testcase_11 AC 109 ms
34,016 KB
testcase_12 AC 131 ms
33,512 KB
testcase_13 AC 90 ms
33,888 KB
testcase_14 AC 198 ms
37,472 KB
testcase_15 AC 194 ms
34,528 KB
testcase_16 AC 93 ms
33,640 KB
testcase_17 AC 96 ms
33,760 KB
testcase_18 AC 98 ms
33,512 KB
testcase_19 AC 193 ms
35,936 KB
testcase_20 AC 120 ms
33,888 KB
testcase_21 AC 99 ms
33,512 KB
testcase_22 AC 118 ms
34,024 KB
testcase_23 AC 115 ms
33,896 KB
testcase_24 AC 103 ms
33,760 KB
testcase_25 AC 76 ms
33,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

(define n (read))

(define (itr a)
  (let1 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 (+ a 1))
        (let1 x (expt-mod a (/ r 2) n)
        (if (= x (- n 1)) (itr (+ a 1))
        (let1 p (gcd n (+ x 1))
          (output-solution p (/ n p)))))))))))
  
(itr 2)
0