結果

問題 No.1013 〇マス進む
ユーザー 👑 obakyanobakyan
提出日時 2020-03-20 23:58:30
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 80,692 KB
最終ジャッジ日時 2024-12-15 21:41:39
合計ジャッジ時間 9,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 8 ms
6,820 KB
testcase_14 AC 88 ms
37,760 KB
testcase_15 AC 171 ms
72,448 KB
testcase_16 AC 156 ms
72,192 KB
testcase_17 AC 84 ms
37,760 KB
testcase_18 AC 102 ms
38,016 KB
testcase_19 AC 58 ms
20,864 KB
testcase_20 AC 198 ms
73,600 KB
testcase_21 AC 80 ms
37,504 KB
testcase_22 AC 102 ms
38,400 KB
testcase_23 AC 35 ms
20,096 KB
testcase_24 AC 194 ms
73,216 KB
testcase_25 AC 190 ms
72,960 KB
testcase_26 AC 39 ms
20,224 KB
testcase_27 AC 78 ms
37,504 KB
testcase_28 AC 38 ms
20,352 KB
testcase_29 AC 196 ms
73,472 KB
testcase_30 AC 54 ms
20,608 KB
testcase_31 AC 115 ms
38,656 KB
testcase_32 AC 90 ms
37,888 KB
testcase_33 AC 97 ms
37,888 KB
testcase_34 AC 177 ms
72,064 KB
testcase_35 AC 191 ms
72,320 KB
testcase_36 AC 14 ms
7,936 KB
testcase_37 AC 14 ms
7,808 KB
testcase_38 AC 197 ms
72,448 KB
testcase_39 AC 59 ms
20,480 KB
testcase_40 AC 200 ms
72,576 KB
testcase_41 AC 45 ms
20,352 KB
testcase_42 AC 94 ms
37,632 KB
testcase_43 AC 61 ms
20,736 KB
testcase_44 AC 99 ms
37,760 KB
testcase_45 AC 90 ms
37,376 KB
testcase_46 AC 46 ms
20,352 KB
testcase_47 AC 92 ms
37,632 KB
testcase_48 AC 106 ms
38,016 KB
testcase_49 AC 201 ms
72,192 KB
testcase_50 AC 125 ms
38,272 KB
testcase_51 AC 122 ms
38,272 KB
testcase_52 AC 29 ms
11,648 KB
testcase_53 AC 33 ms
11,776 KB
testcase_54 AC 156 ms
71,680 KB
testcase_55 AC 49 ms
20,352 KB
testcase_56 AC 200 ms
72,320 KB
testcase_57 AC 139 ms
38,656 KB
testcase_58 AC 248 ms
73,344 KB
testcase_59 AC 230 ms
72,960 KB
testcase_60 AC 221 ms
73,216 KB
testcase_61 AC 185 ms
73,728 KB
testcase_62 AC 214 ms
80,692 KB
testcase_63 AC 1 ms
6,820 KB
testcase_64 AC 1 ms
6,816 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