結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
18,852 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 AC 78 ms
12,032 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 297 ms
33,280 KB
testcase_08 RE -
testcase_09 TLE -
testcase_10 AC 111 ms
12,544 KB
testcase_11 AC 82 ms
12,288 KB
testcase_12 AC 95 ms
12,416 KB
testcase_13 AC 94 ms
12,544 KB
testcase_14 AC 83 ms
12,544 KB
testcase_15 AC 79 ms
12,288 KB
testcase_16 AC 82 ms
12,288 KB
testcase_17 AC 79 ms
12,160 KB
testcase_18 AC 80 ms
12,288 KB
testcase_19 AC 79 ms
12,416 KB
testcase_20 AC 77 ms
12,160 KB
testcase_21 RE -
testcase_22 AC 81 ms
12,160 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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