結果

問題 No.8056 量子コンピュータで素因数分解 Easy
ユーザー Ryuhei MoriRyuhei Mori
提出日時 2020-01-29 21:34:18
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 37,472 KB
平均クエリ数 3.04
最終ジャッジ日時 2024-12-31 19:20:20
合計ジャッジ時間 5,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
33,640 KB
testcase_01 AC 113 ms
33,480 KB
testcase_02 AC 158 ms
34,392 KB
testcase_03 AC 160 ms
34,016 KB
testcase_04 AC 104 ms
33,888 KB
testcase_05 AC 102 ms
34,280 KB
testcase_06 AC 105 ms
33,632 KB
testcase_07 AC 104 ms
33,632 KB
testcase_08 AC 105 ms
33,376 KB
testcase_09 AC 105 ms
33,632 KB
testcase_10 AC 107 ms
33,368 KB
testcase_11 AC 127 ms
33,504 KB
testcase_12 AC 151 ms
33,760 KB
testcase_13 AC 108 ms
33,760 KB
testcase_14 AC 236 ms
37,472 KB
testcase_15 AC 229 ms
34,792 KB
testcase_16 AC 115 ms
33,888 KB
testcase_17 AC 119 ms
33,880 KB
testcase_18 AC 121 ms
34,016 KB
testcase_19 AC 224 ms
35,936 KB
testcase_20 AC 144 ms
33,888 KB
testcase_21 AC 119 ms
33,880 KB
testcase_22 AC 129 ms
34,400 KB
testcase_23 AC 130 ms
33,632 KB
testcase_24 AC 124 ms
33,512 KB
testcase_25 AC 90 ms
33,384 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