結果
問題 | No.624 Santa Claus and The Last Dungeon |
ユーザー | mai |
提出日時 | 2017-12-24 01:16:30 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 478 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 30,160 KB |
平均クエリ数 | 747.22 |
最終ジャッジ日時 | 2024-07-16 15:07:36 |
合計ジャッジ時間 | 11,962 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 239 ms
29,520 KB |
testcase_01 | AC | 237 ms
29,392 KB |
testcase_02 | AC | 228 ms
30,032 KB |
testcase_03 | AC | 231 ms
29,264 KB |
testcase_04 | AC | 258 ms
29,776 KB |
testcase_05 | AC | 239 ms
29,776 KB |
testcase_06 | AC | 234 ms
29,776 KB |
testcase_07 | AC | 237 ms
29,776 KB |
testcase_08 | AC | 239 ms
29,776 KB |
testcase_09 | AC | 243 ms
29,520 KB |
testcase_10 | AC | 238 ms
29,776 KB |
testcase_11 | AC | 236 ms
29,520 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
@local_answer = ["0"]*200 def query_local(strs) p strs res = [] strs.zip(@local_answer) do |x, a| res << (x == a ? 1 : 0) end cnt = [0,0,0] res.each_slice(2){|a,b| cnt[a+b] += 1} return cnt end def query(q) #return query_local(q.map{|e| e ? e.to_s : "?"}) str = "" q.map{|e| e ? e.to_s : "?"}.each_slice(2){|a,b| str << a << b << " "} puts str STDOUT.flush return gets.split.map(&:to_i) end idx = 0 qu = [nil]*200 gets.to_i.times do |lop| qu[idx] = lop%10 res = query(qu) res[1] += res[2]*2 idx += 1 if res[1] > idx break if idx == 200 end