結果

問題 No.202 1円玉投げ
ユーザー 👑 obakyanobakyan
提出日時 2022-04-03 22:49:26
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 1,004 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-12-22 12:12:14
合計ジャッジ時間 4,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
16,640 KB
testcase_01 AC 185 ms
17,280 KB
testcase_02 AC 8 ms
5,888 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 9 ms
5,888 KB
testcase_05 AC 17 ms
6,784 KB
testcase_06 AC 158 ms
14,208 KB
testcase_07 AC 190 ms
14,976 KB
testcase_08 AC 173 ms
15,232 KB
testcase_09 AC 90 ms
11,520 KB
testcase_10 AC 36 ms
8,448 KB
testcase_11 AC 74 ms
10,624 KB
testcase_12 AC 74 ms
10,624 KB
testcase_13 AC 41 ms
8,704 KB
testcase_14 AC 21 ms
6,820 KB
testcase_15 AC 90 ms
11,136 KB
testcase_16 AC 131 ms
16,512 KB
testcase_17 AC 130 ms
16,512 KB
testcase_18 AC 133 ms
16,512 KB
testcase_19 AC 87 ms
10,880 KB
testcase_20 AC 159 ms
13,568 KB
testcase_21 AC 94 ms
11,136 KB
testcase_22 AC 9 ms
6,016 KB
testcase_23 AC 9 ms
6,016 KB
testcase_24 AC 8 ms
5,888 KB
testcase_25 AC 9 ms
5,760 KB
testcase_26 AC 9 ms
6,016 KB
testcase_27 AC 9 ms
6,016 KB
testcase_28 AC 8 ms
5,888 KB
testcase_29 AC 9 ms
5,888 KB
testcase_30 AC 9 ms
6,016 KB
testcase_31 AC 8 ms
5,888 KB
testcase_32 AC 10 ms
5,888 KB
testcase_33 AC 12 ms
6,144 KB
testcase_34 AC 13 ms
6,016 KB
testcase_35 AC 140 ms
16,384 KB
testcase_36 AC 145 ms
16,512 KB
testcase_37 AC 193 ms
15,616 KB
testcase_38 AC 144 ms
16,384 KB
testcase_39 AC 9 ms
5,888 KB
testcase_40 AC 8 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma = math.min, math.max
local mfl, mce = math.floor, math.ceil
local mesh = 100
local lim = 201
local t = {}
for i = 1, lim do
  t[i] = {}
  for j = 1, lim do
    t[i][j] = {}
  end
end
local function inner(a, b, c, d)
  return (a - c) * (a - c) + (b - d) * (b - d) < 400
end
local n = io.read("*n")
for _i = 1, n do
  local a, b = io.read("*n", "*n")
  a = a + 1
  b = b + 1
  local ap = mce(a / mesh)
  local bp = mce(b / mesh)
  local imin = mma(1, ap - 1)
  local imax = mmi(lim, ap + 1)
  local jmin = mma(1, bp - 1)
  local jmax = mmi(lim, bp + 1)
  local found = false
  for i = imin, imax do for j = jmin, jmax do
    local tbl = t[i][j]
    for k = 1, #tbl do
      local c, d = tbl[k][1], tbl[k][2]
      if inner(a, b, c, d) then found = true break end
    end
    if found then break end
  end if found then break end end
  if not found then
    table.insert(t[ap][bp], {a, b})
  end
end
local ret = 0
for i = 1, lim do for j = 1, lim do
  ret = ret + #t[i][j]
end end
print(ret)
0