結果

問題 No.1013 〇マス進む
ユーザー 👑 obakyanobakyan
提出日時 2020-03-20 23:58:30
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 80,692 KB
最終ジャッジ日時 2024-05-09 09:49:21
合計ジャッジ時間 8,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 89 ms
37,760 KB
testcase_15 AC 174 ms
72,448 KB
testcase_16 AC 169 ms
72,192 KB
testcase_17 AC 86 ms
37,760 KB
testcase_18 AC 100 ms
38,016 KB
testcase_19 AC 56 ms
20,736 KB
testcase_20 AC 193 ms
73,600 KB
testcase_21 AC 78 ms
37,504 KB
testcase_22 AC 105 ms
38,400 KB
testcase_23 AC 38 ms
20,096 KB
testcase_24 AC 190 ms
73,216 KB
testcase_25 AC 177 ms
72,960 KB
testcase_26 AC 37 ms
20,224 KB
testcase_27 AC 76 ms
37,376 KB
testcase_28 AC 39 ms
20,352 KB
testcase_29 AC 177 ms
73,344 KB
testcase_30 AC 55 ms
20,480 KB
testcase_31 AC 111 ms
38,656 KB
testcase_32 AC 86 ms
37,888 KB
testcase_33 AC 98 ms
37,888 KB
testcase_34 AC 185 ms
71,936 KB
testcase_35 AC 193 ms
72,192 KB
testcase_36 AC 12 ms
7,808 KB
testcase_37 AC 12 ms
7,808 KB
testcase_38 AC 187 ms
72,320 KB
testcase_39 AC 58 ms
20,480 KB
testcase_40 AC 197 ms
72,576 KB
testcase_41 AC 44 ms
20,352 KB
testcase_42 AC 100 ms
37,632 KB
testcase_43 AC 60 ms
20,736 KB
testcase_44 AC 102 ms
37,760 KB
testcase_45 AC 90 ms
37,504 KB
testcase_46 AC 45 ms
20,352 KB
testcase_47 AC 90 ms
37,632 KB
testcase_48 AC 104 ms
38,016 KB
testcase_49 AC 193 ms
72,064 KB
testcase_50 AC 121 ms
38,400 KB
testcase_51 AC 114 ms
38,272 KB
testcase_52 AC 27 ms
11,648 KB
testcase_53 AC 34 ms
11,904 KB
testcase_54 AC 157 ms
71,680 KB
testcase_55 AC 50 ms
20,352 KB
testcase_56 AC 207 ms
72,320 KB
testcase_57 AC 150 ms
38,656 KB
testcase_58 AC 250 ms
73,344 KB
testcase_59 AC 235 ms
72,960 KB
testcase_60 AC 224 ms
73,216 KB
testcase_61 AC 188 ms
73,728 KB
testcase_62 AC 196 ms
80,692 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local bls, brs = bit.lshift, bit.rshift
local n, k = io.read("*n", "*n")
local p = {}
for i = 1, n do
  p[i] = io.read("*n")
end
local dst = {}
local turn = {}
for step = 1, 32 do
  dst[step], turn[step] = {}, {}
end
for i = 1, n do
  local d = i + p[i]
  if d <= n then
    dst[1][i] = d
    turn[1][i] = 0
  else
    dst[1][i] = d - n
    turn[1][i] = 1
  end
end
for step = 2, 32 do
  for i = 1, n do
    local d1, t1 = dst[step - 1][i], turn[step - 1][i]
    local d2, t2 = dst[step - 1][d1], turn[step - 1][d1]
    dst[step][i] = d2
    turn[step][i] = t1 + t2
  end
end
for spos = 1, n do
  local tk = k
  local p, t = spos, 0
  for step = 1, 32 do
    if tk % 2 == 1 then
      t = t + turn[step][p]
      p = dst[step][p]
    end
    tk = brs(tk, 1)
  end
  local z = 1LL * t * n + p
  local str = tostring(z):gsub("LL", "")
  print(str)
end
0