結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
28,616 KB
testcase_01 AC 142 ms
28,360 KB
testcase_02 AC 205 ms
28,760 KB
testcase_03 AC 208 ms
29,536 KB
testcase_04 AC 144 ms
29,152 KB
testcase_05 AC 145 ms
29,408 KB
testcase_06 AC 154 ms
28,904 KB
testcase_07 AC 145 ms
28,648 KB
testcase_08 AC 150 ms
28,768 KB
testcase_09 AC 147 ms
28,896 KB
testcase_10 AC 161 ms
28,776 KB
testcase_11 AC 161 ms
28,768 KB
testcase_12 AC 157 ms
28,896 KB
testcase_13 AC 156 ms
28,768 KB
testcase_14 AC 177 ms
28,896 KB
testcase_15 AC 168 ms
28,896 KB
testcase_16 AC 164 ms
28,896 KB
testcase_17 AC 170 ms
29,152 KB
testcase_18 AC 197 ms
29,024 KB
testcase_19 AC 178 ms
29,024 KB
testcase_20 AC 193 ms
29,280 KB
testcase_21 AC 166 ms
28,896 KB
testcase_22 AC 159 ms
28,648 KB
testcase_23 AC 175 ms
29,312 KB
testcase_24 AC 167 ms
28,896 KB
testcase_25 AC 140 ms
29,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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)
  if g != 1
    break
  else
    t = query(a)
    if t % 2 == 1
      next
    end
    b = a.pow(t/2, n)
    g = n.gcd(b-1)
    if g != 1
      break
    end
    if b == n-1
      next
    end
    g = n.gcd(b+1)
    if g != 1
      break
    end
  end
end

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