結果

問題 No.850 企業コンテスト2位
ユーザー betrue12betrue12
提出日時 2019-07-05 22:48:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,400 KB
平均クエリ数 229.79
最終ジャッジ日時 2024-07-16 17:27:53
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
29,016 KB
testcase_01 AC 111 ms
28,632 KB
testcase_02 AC 116 ms
28,632 KB
testcase_03 AC 111 ms
29,144 KB
testcase_04 AC 112 ms
28,888 KB
testcase_05 AC 110 ms
28,888 KB
testcase_06 AC 113 ms
28,760 KB
testcase_07 AC 115 ms
28,888 KB
testcase_08 AC 116 ms
28,888 KB
testcase_09 AC 119 ms
29,144 KB
testcase_10 AC 123 ms
29,144 KB
testcase_11 AC 122 ms
28,632 KB
testcase_12 AC 124 ms
28,632 KB
testcase_13 AC 122 ms
28,760 KB
testcase_14 AC 121 ms
28,376 KB
testcase_15 AC 122 ms
29,144 KB
testcase_16 AC 119 ms
28,888 KB
testcase_17 AC 122 ms
28,760 KB
testcase_18 AC 121 ms
29,016 KB
testcase_19 AC 121 ms
29,040 KB
testcase_20 AC 125 ms
28,632 KB
testcase_21 AC 122 ms
28,888 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 115 ms
28,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$t = 0

def ask(x, y)
    # $t += 1
    # ANS.each do |a|
    #     if a == x || a == y
    #         return a
    #     end
    # end
    # raise

    puts "? #{x} #{y}"
    STDOUT.flush
    return gets.to_i
end

N = gets.to_i
ANS = [0] + (1..N).to_a.shuffle

as = (1..N).to_a.shuffle
a1, a2 = as.shift(2)
a1, a2 = a2, a1 if ask(a1, a2) == a2
as.each do |a|
    if ask(a2, a) == a
        if ask(a1, a) == a
            a1, a2 = a, a1
        else
            a2 = a
        end
    end
end

puts "! #{a2}"

# puts ANS[2]
# puts $t
0