結果
問題 | No.305 鍵(2) |
ユーザー | gemmaro |
提出日時 | 2020-08-05 07:37:18 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 29,280 KB |
平均クエリ数 | 10.15 |
最終ジャッジ日時 | 2024-07-17 04:10:40 |
合計ジャッジ時間 | 4,143 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 116 ms
29,024 KB |
testcase_06 | AC | 110 ms
29,152 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true def unlocked? gets.split.then { |c, l| [c.to_i, l == 'unlocked'] } end cs = Array.new(10) (0..9).each do |i| puts i.to_s * 10 STDOUT.flush c, l = unlocked? if l exit else cs[i] = c.to_i end end es = Array.new(10) (0..9).zip(cs).map do |i, c| (0..9).to_a.combination(c).each do |j| ds = Array.new(10, '*') j.each do |k| ds[k] = i end puts ds.join STDOUT.flush d, l = unlocked? if l exit else if c == d es[i] = j break end end end end xs = Array.new(10) es.each_with_index do |e, j| e.each do |i| xs[i] = j end end puts xs.join