結果

問題 No.1013 〇マス進む
ユーザー 👑 obakyanobakyan
提出日時 2020-03-20 23:49:58
言語 Lua
(LuaJit 2.1.1734355927)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-12-15 21:03:28
合計ジャッジ時間 7,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 6 ms
5,248 KB
testcase_14 AC 63 ms
36,224 KB
testcase_15 AC 118 ms
69,632 KB
testcase_16 AC 108 ms
69,632 KB
testcase_17 AC 59 ms
36,352 KB
testcase_18 AC 69 ms
36,352 KB
testcase_19 AC 36 ms
19,712 KB
testcase_20 AC 129 ms
69,632 KB
testcase_21 AC 57 ms
36,224 KB
testcase_22 AC 70 ms
36,352 KB
testcase_23 AC 27 ms
19,712 KB
testcase_24 AC 129 ms
69,632 KB
testcase_25 AC 130 ms
69,632 KB
testcase_26 AC 28 ms
19,712 KB
testcase_27 AC 53 ms
36,352 KB
testcase_28 AC 28 ms
19,712 KB
testcase_29 AC 126 ms
69,504 KB
testcase_30 AC 42 ms
19,712 KB
testcase_31 AC 76 ms
36,352 KB
testcase_32 AC 61 ms
36,352 KB
testcase_33 AC 66 ms
36,352 KB
testcase_34 AC 123 ms
69,504 KB
testcase_35 AC 128 ms
69,632 KB
testcase_36 AC 10 ms
8,064 KB
testcase_37 AC 9 ms
8,064 KB
testcase_38 AC 127 ms
69,504 KB
testcase_39 AC 40 ms
19,712 KB
testcase_40 AC 139 ms
69,632 KB
testcase_41 AC 32 ms
19,712 KB
testcase_42 AC 67 ms
36,352 KB
testcase_43 AC 39 ms
19,712 KB
testcase_44 AC 69 ms
36,352 KB
testcase_45 AC 63 ms
36,352 KB
testcase_46 AC 32 ms
19,712 KB
testcase_47 AC 68 ms
36,352 KB
testcase_48 AC 73 ms
36,352 KB
testcase_49 AC 135 ms
69,632 KB
testcase_50 AC 85 ms
36,352 KB
testcase_51 AC 80 ms
36,352 KB
testcase_52 AC 20 ms
11,392 KB
testcase_53 AC 22 ms
11,392 KB
testcase_54 AC 109 ms
69,632 KB
testcase_55 AC 35 ms
19,712 KB
testcase_56 AC 143 ms
69,632 KB
testcase_57 AC 98 ms
36,352 KB
testcase_58 AC 170 ms
69,504 KB
testcase_59 AC 163 ms
69,504 KB
testcase_60 WA -
testcase_61 AC 125 ms
69,632 KB
testcase_62 AC 121 ms
69,632 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 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