結果

問題 No.305 鍵(2)
ユーザー Cos5XCos5X
提出日時 2015-11-27 23:19:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,152 KB
平均クエリ数 52.69
最終ジャッジ日時 2024-07-16 21:49:59
合計ジャッジ時間 2,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
28,384 KB
testcase_01 AC 102 ms
28,640 KB
testcase_02 AC 98 ms
29,152 KB
testcase_03 AC 102 ms
28,768 KB
testcase_04 AC 99 ms
28,768 KB
testcase_05 AC 104 ms
28,768 KB
testcase_06 AC 100 ms
28,512 KB
testcase_07 AC 100 ms
28,896 KB
testcase_08 AC 97 ms
28,896 KB
testcase_09 AC 100 ms
28,640 KB
testcase_10 AC 101 ms
28,896 KB
testcase_11 AC 102 ms
28,896 KB
testcase_12 AC 100 ms
28,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - i
Syntax OK

ソースコード

diff #

i = 0
key = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
prev = nil
now = 0
loop do
  puts key.join
  STDOUT.flush
  a, s = gets.split(' ')
  break if s == "unlocked"

  if prev.nil?
    prev = a
  elsif prev > a
    key[now] = (key[now]+9)%10
    now += 1
  elsif prev < a
    now += 1
  end
  now = 0 if now > 9

  prev = a
  key[now] = (key[now]+1)%10
end
0