結果

問題 No.355 数当てゲーム(2)
ユーザー maimai
提出日時 2017-04-30 12:53:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 29,544 KB
平均クエリ数 4.94
最終ジャッジ日時 2024-07-16 12:51:56
合計ジャッジ時間 13,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
29,016 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 129 ms
28,888 KB
testcase_05 AC 126 ms
28,760 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 109 ms
29,016 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 124 ms
29,272 KB
testcase_16 AC 125 ms
28,760 KB
testcase_17 AC 125 ms
28,760 KB
testcase_18 WA -
testcase_19 AC 125 ms
29,016 KB
testcase_20 WA -
testcase_21 AC 108 ms
29,008 KB
testcase_22 WA -
testcase_23 AC 122 ms
29,008 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 116 ms
29,136 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 117 ms
29,008 KB
testcase_32 AC 126 ms
29,008 KB
testcase_33 WA -
testcase_34 AC 124 ms
28,880 KB
testcase_35 WA -
testcase_36 AC 127 ms
29,000 KB
testcase_37 AC 127 ms
29,256 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 125 ms
28,736 KB
testcase_46 AC 125 ms
29,256 KB
testcase_47 AC 121 ms
29,512 KB
testcase_48 WA -
testcase_49 AC 108 ms
29,000 KB
testcase_50 AC 125 ms
29,000 KB
testcase_51 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

answer = []
(0..9).to_a.combination(4){|_v|
    _v.permutation{|v|
        answer << v
    }
}

def simulate(answer,query)
    x=y=0
    4.times{|i|
        if answer[i] == query[i]
            x+=1
        elsif answer.include?(query[i])
            y+=1
        end
    }
    return [x,y]
end

def send(v)
    puts v*" " ; STDOUT.flush
    return gets.split.map(&:to_i)
end

while answer.size > 1
    v = answer.sample
    res = send(v)
    answer.delete_if{|e| simulate(e,v) != res}
end

abort if answer.size == 0
0