結果

問題 No.1665 quotient replace
ユーザー 👑 obakyanobakyan
提出日時 2024-11-20 23:14:38
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 762 ms / 3,000 ms
コード長 920 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 46,804 KB
最終ジャッジ日時 2024-11-20 23:14:56
合計ジャッジ時間 14,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
19,968 KB
testcase_01 AC 51 ms
19,968 KB
testcase_02 AC 55 ms
20,068 KB
testcase_03 AC 57 ms
19,968 KB
testcase_04 AC 57 ms
20,044 KB
testcase_05 AC 60 ms
20,080 KB
testcase_06 AC 59 ms
19,968 KB
testcase_07 AC 57 ms
19,968 KB
testcase_08 AC 57 ms
20,096 KB
testcase_09 AC 68 ms
20,444 KB
testcase_10 AC 304 ms
32,464 KB
testcase_11 AC 580 ms
43,144 KB
testcase_12 AC 90 ms
21,120 KB
testcase_13 AC 754 ms
46,676 KB
testcase_14 AC 720 ms
46,804 KB
testcase_15 AC 756 ms
46,804 KB
testcase_16 AC 762 ms
46,796 KB
testcase_17 AC 746 ms
46,804 KB
testcase_18 AC 55 ms
19,968 KB
testcase_19 AC 53 ms
20,080 KB
testcase_20 AC 52 ms
19,904 KB
testcase_21 AC 53 ms
20,096 KB
testcase_22 AC 56 ms
20,096 KB
testcase_23 AC 56 ms
19,968 KB
testcase_24 AC 53 ms
20,096 KB
testcase_25 AC 56 ms
19,968 KB
testcase_26 AC 56 ms
20,036 KB
testcase_27 AC 59 ms
19,968 KB
testcase_28 AC 69 ms
20,416 KB
testcase_29 AC 84 ms
20,992 KB
testcase_30 AC 239 ms
26,752 KB
testcase_31 AC 345 ms
30,336 KB
testcase_32 AC 584 ms
42,624 KB
testcase_33 AC 205 ms
25,836 KB
testcase_34 AC 454 ms
36,892 KB
testcase_35 AC 448 ms
35,012 KB
testcase_36 AC 441 ms
36,416 KB
testcase_37 AC 432 ms
34,596 KB
testcase_38 AC 474 ms
40,936 KB
testcase_39 AC 340 ms
33,284 KB
testcase_40 AC 364 ms
33,412 KB
testcase_41 AC 333 ms
33,284 KB
testcase_42 AC 55 ms
20,080 KB
testcase_43 AC 60 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local bxor = bit.bxor
local mce, mfl, msq, mmi, mma, mab = math.ceil, math.floor, math.sqrt, math.min, math.max, math.abs
local lim = 1000 * 1000

local function getprimes(x)
  local primes = {}
  local allnums = {}
  for i = 1, x do allnums[i] = true end
  for i = 2, x do
    if allnums[i] then
      table.insert(primes, i)
      local lim = mfl(x / i)
      for j = 2, lim do
        allnums[j * i] = false
      end
    end
  end
  return primes
end
local tt = {}
for i = 1, lim do
  tt[i] = 0
end
local primes = getprimes(lim)
local pn = #primes
for i = 1, pn do
  local p = primes[i]
  local z = p
  while z <= lim do
    local y = z
    while y <= lim do
      tt[y] = tt[y] + 1
      y = y + z
    end
    z = z * p
  end
end

local n = io.read("*n", "*l")
local ret = 0
local s = io.read()
for w in s:gmatch("%d+") do
  local a = tonumber(w)
  ret = bxor(ret, tt[a])
end
print(ret == 0 and "black" or "white")
0