結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
29,024 KB
testcase_01 AC 111 ms
28,760 KB
testcase_02 AC 108 ms
28,888 KB
testcase_03 AC 114 ms
28,504 KB
testcase_04 AC 109 ms
29,016 KB
testcase_05 AC 110 ms
28,888 KB
testcase_06 AC 110 ms
28,632 KB
testcase_07 AC 110 ms
29,016 KB
testcase_08 AC 110 ms
29,016 KB
testcase_09 AC 108 ms
28,760 KB
testcase_10 AC 109 ms
28,632 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 = (0...b).find { |x| (x + 100) % b == c }

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

STDOUT.flush
0