結果

問題 No.2357 Guess the Function
ユーザー simansiman
提出日時 2023-06-24 18:36:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,208 KB
平均クエリ数 2.91
最終ジャッジ日時 2024-07-01 21:35:39
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
28,512 KB
testcase_01 WA -
testcase_02 AC 109 ms
28,376 KB
testcase_03 AC 109 ms
28,504 KB
testcase_04 AC 110 ms
28,760 KB
testcase_05 WA -
testcase_06 AC 109 ms
28,888 KB
testcase_07 AC 109 ms
29,016 KB
testcase_08 WA -
testcase_09 AC 107 ms
28,632 KB
testcase_10 AC 107 ms
28,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def send_query(x)
  STDOUT.puts("? #{x}")
  STDOUT.flush

  gets.to_i
end

c = send_query(100)

if c == 99
  STDOUT.puts("! 99 100")
else
  b = send_query(100 - c - 1) + 1
  a = (1...b).find { |x| (x + 100) % b == c }

  STDOUT.puts("! #{a} #{b}")
end

STDOUT.flush
0