結果

問題 No.2559 眩しい数直線
ユーザー 👑 obakyanobakyan
提出日時 2024-08-14 13:12:15
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-14 13:12:17
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, x = io.read("*n", "*n")
local a, b = {}, {}
for i = 1, n do
  a[i], b[i] = io.read("*n", "*n")
end
local t = {}
for i = 1, x do
  local cand = 0
  for j = 1, n do
    cand = math.max(cand, b[j] - math.abs(i - a[j]))
  end
  t[i] = cand
end
print(table.concat(t, " "))
0