結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
28,872 KB
testcase_01 AC 155 ms
29,128 KB
testcase_02 AC 212 ms
28,888 KB
testcase_03 AC 234 ms
28,768 KB
testcase_04 AC 154 ms
28,896 KB
testcase_05 AC 168 ms
29,496 KB
testcase_06 RE -
testcase_07 AC 154 ms
28,768 KB
testcase_08 AC 157 ms
29,024 KB
testcase_09 AC 161 ms
28,768 KB
testcase_10 AC 158 ms
28,896 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 157 ms
28,904 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 172 ms
29,016 KB
testcase_17 AC 171 ms
28,640 KB
testcase_18 AC 194 ms
28,896 KB
testcase_19 AC 439 ms
29,152 KB
testcase_20 AC 212 ms
29,152 KB
testcase_21 AC 186 ms
29,544 KB
testcase_22 AC 174 ms
28,624 KB
testcase_23 AC 187 ms
29,160 KB
testcase_24 AC 178 ms
29,152 KB
testcase_25 AC 144 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
      continue
    end
    b = a.pow(t/2, n)
    g = n.gcd(b-1)
    if g != 1
      break
    end
    if b == n-1
      continue
    end
    g = n.gcd(b+1)
    if g != 1
      break
    end
  end
end

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