結果
問題 | No.305 鍵(2) |
ユーザー | gemmaro |
提出日時 | 2020-08-05 07:15:51 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 381 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 29,152 KB |
平均クエリ数 | 0.85 |
最終ジャッジ日時 | 2024-07-17 04:09:59 |
合計ジャッジ時間 | 3,852 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
29,152 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true cs = Array.new(10) (0..9).each do |i| puts i.to_s * 10 STDOUT.flush c, l = gets.split.then { |c, l| [c, l == 'unlocked'] } if l exit else cs[i] = c.to_i end end (0..9).zip(cs).map { _1.to_s * _2 }.flatten.permutation.each do |k| puts k.join STDOUT.flush _, l = gets.split.then { |c, l| [c, l == 'unlocked'] } exit if l end