結果

問題 No.355 数当てゲーム(2)
ユーザー maimai
提出日時 2017-04-30 12:49:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,544 KB
平均クエリ数 5.02
最終ジャッジ日時 2024-07-16 12:52:10
合計ジャッジ時間 13,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
28,760 KB
testcase_01 WA -
testcase_02 AC 105 ms
29,016 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 107 ms
29,016 KB
testcase_08 WA -
testcase_09 AC 109 ms
28,504 KB
testcase_10 WA -
testcase_11 AC 109 ms
29,528 KB
testcase_12 WA -
testcase_13 AC 108 ms
28,888 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 108 ms
29,400 KB
testcase_20 AC 110 ms
28,624 KB
testcase_21 WA -
testcase_22 AC 108 ms
29,008 KB
testcase_23 AC 109 ms
28,872 KB
testcase_24 AC 105 ms
28,752 KB
testcase_25 AC 107 ms
29,136 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 106 ms
28,752 KB
testcase_29 AC 108 ms
29,008 KB
testcase_30 AC 106 ms
28,752 KB
testcase_31 WA -
testcase_32 AC 108 ms
28,624 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 107 ms
29,000 KB
testcase_36 WA -
testcase_37 AC 105 ms
29,128 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 111 ms
29,544 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 114 ms
29,512 KB
testcase_45 AC 109 ms
29,000 KB
testcase_46 WA -
testcase_47 AC 110 ms
29,384 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 109 ms
29,000 KB
testcase_51 AC 114 ms
28,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

while answer.size > 1
    v = answer.sample
    puts v*" " ; STDOUT.flush
    res = gets.split.map(&:to_i)
    answer.delete_if{|e| simulate(e,v) != res}
end
0