結果

問題 No.3056 量子コンピュータで素因数分解 Easy
ユーザー tskrextskrex
提出日時 2020-02-05 03:49:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,408 KB
平均クエリ数 2.92
最終ジャッジ日時 2024-06-10 07:16:31
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
29,128 KB
testcase_01 AC 159 ms
29,000 KB
testcase_02 AC 205 ms
28,760 KB
testcase_03 AC 209 ms
28,896 KB
testcase_04 AC 143 ms
28,392 KB
testcase_05 AC 145 ms
28,768 KB
testcase_06 AC 147 ms
28,640 KB
testcase_07 AC 142 ms
29,152 KB
testcase_08 AC 155 ms
29,408 KB
testcase_09 AC 145 ms
29,144 KB
testcase_10 AC 148 ms
28,640 KB
testcase_11 AC 180 ms
28,640 KB
testcase_12 AC 182 ms
29,152 KB
testcase_13 AC 148 ms
28,904 KB
testcase_14 AC 169 ms
29,024 KB
testcase_15 AC 168 ms
29,024 KB
testcase_16 AC 158 ms
28,896 KB
testcase_17 AC 163 ms
29,288 KB
testcase_18 AC 178 ms
28,640 KB
testcase_19 AC 175 ms
29,152 KB
testcase_20 AC 193 ms
28,392 KB
testcase_21 AC 166 ms
28,896 KB
testcase_22 AC 174 ms
29,024 KB
testcase_23 AC 175 ms
29,160 KB
testcase_24 AC 170 ms
28,768 KB
testcase_25 AC 140 ms
29,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def query(a)
  puts "? #{a}"
  STDOUT.flush
  gets.to_i
end

n = gets.to_i
g = -1

loop do
  a = rand(2...n)
  g = n.gcd(a)
  break if g != 1

  t = query(a)
  next if t.odd?

  b = a.pow(t / 2, n)
  g = n.gcd(b - 1)
  break if g != 1

  next if b == n - 1

  g = n.gcd(b + 1)
  break if g != 1
end

puts "! #{g} #{n / g}"
0