結果

問題 No.1013 〇マス進む
ユーザー 👑 obakyanobakyan
提出日時 2020-03-20 23:49:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-05-09 09:25:52
合計ジャッジ時間 6,903 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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 67 ms
36,352 KB
testcase_15 AC 116 ms
69,632 KB
testcase_16 AC 115 ms
69,632 KB
testcase_17 AC 58 ms
36,352 KB
testcase_18 AC 68 ms
36,224 KB
testcase_19 AC 36 ms
19,712 KB
testcase_20 AC 132 ms
69,632 KB
testcase_21 AC 56 ms
36,480 KB
testcase_22 AC 70 ms
36,352 KB
testcase_23 AC 27 ms
19,712 KB
testcase_24 AC 133 ms
69,632 KB
testcase_25 AC 132 ms
69,632 KB
testcase_26 AC 27 ms
19,712 KB
testcase_27 AC 51 ms
36,352 KB
testcase_28 AC 26 ms
19,712 KB
testcase_29 AC 122 ms
69,632 KB
testcase_30 AC 40 ms
19,712 KB
testcase_31 AC 75 ms
36,480 KB
testcase_32 AC 60 ms
36,224 KB
testcase_33 AC 66 ms
36,352 KB
testcase_34 AC 124 ms
69,632 KB
testcase_35 AC 132 ms
69,632 KB
testcase_36 AC 10 ms
8,064 KB
testcase_37 AC 10 ms
8,064 KB
testcase_38 AC 125 ms
69,632 KB
testcase_39 AC 39 ms
19,584 KB
testcase_40 AC 137 ms
69,632 KB
testcase_41 AC 31 ms
19,712 KB
testcase_42 AC 67 ms
36,352 KB
testcase_43 AC 40 ms
19,712 KB
testcase_44 AC 69 ms
36,352 KB
testcase_45 AC 62 ms
36,352 KB
testcase_46 AC 32 ms
19,712 KB
testcase_47 AC 65 ms
36,352 KB
testcase_48 AC 74 ms
36,224 KB
testcase_49 AC 136 ms
69,504 KB
testcase_50 AC 85 ms
36,352 KB
testcase_51 AC 80 ms
36,352 KB
testcase_52 AC 19 ms
11,392 KB
testcase_53 AC 22 ms
11,264 KB
testcase_54 AC 107 ms
69,504 KB
testcase_55 AC 35 ms
19,712 KB
testcase_56 AC 146 ms
69,632 KB
testcase_57 AC 98 ms
36,352 KB
testcase_58 AC 167 ms
69,632 KB
testcase_59 AC 159 ms
69,632 KB
testcase_60 WA -
testcase_61 AC 123 ms
69,632 KB
testcase_62 AC 122 ms
69,632 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 = t * n + p
  print(z < 100000000000000 and z or "100000000000000")
end
0