結果

問題 No.415 ぴょん
ユーザー quilt-tailsquilt-tails
提出日時 2016-11-07 02:31:37
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 202 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 817,536 KB
最終ジャッジ日時 2024-05-03 22:30:46
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, d = gets.split.map(&:to_i)
a = Array.new(n, "o")
a[0] = "x"
count = 0
ind = d
n.times do
  if a[d] == "o"
    a[d] = "x"
    count += 1
    d = (d + ind) % n
  else
    puts count
    break
  end
end
0