結果

問題 No.1137 Circles
ユーザー 👑 obakyanobakyan
提出日時 2020-11-16 22:32:04
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-23 01:46:48
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
10,820 KB
testcase_01 AC 52 ms
10,812 KB
testcase_02 AC 11 ms
10,860 KB
testcase_03 AC 30 ms
10,784 KB
testcase_04 AC 40 ms
10,880 KB
testcase_05 AC 15 ms
10,752 KB
testcase_06 AC 46 ms
10,860 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 46 ms
10,820 KB
testcase_09 AC 20 ms
10,764 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 31 ms
10,804 KB
testcase_12 AC 57 ms
10,880 KB
testcase_13 AC 21 ms
10,844 KB
testcase_14 AC 55 ms
10,860 KB
testcase_15 AC 22 ms
10,880 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 12 ms
10,752 KB
testcase_18 AC 45 ms
10,736 KB
testcase_19 AC 22 ms
10,880 KB
testcase_20 AC 18 ms
10,752 KB
testcase_21 AC 10 ms
10,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local t = {}
local offset = 200001
for i = 1, 800004 do
  t[i] = 0
end
local n = io.read("*n")
for i = 1, n do
  local x, r = io.read("*n", "*n")
  x = x + offset
  t[(x - r) * 2 + 1] = t[(x - r) * 2 + 1] + 1
  t[(x + r) * 2] = t[(x + r) * 2] - 1
end
local ret = 0
for i = 2, 800004 do
  t[i] = t[i] + t[i - 1]
  if ret < t[i] then ret = t[i] end
end
print(ret)
0