結果

問題 No.1665 quotient replace
ユーザー 👑 obakyanobakyan
提出日時 2022-01-09 00:23:08
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 605 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 172,496 KB
最終ジャッジ日時 2024-11-14 10:04:25
合計ジャッジ時間 112,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,150 ms
135,292 KB
testcase_01 AC 2,141 ms
135,284 KB
testcase_02 AC 2,219 ms
135,148 KB
testcase_03 AC 2,199 ms
135,272 KB
testcase_04 AC 2,252 ms
135,224 KB
testcase_05 AC 2,244 ms
135,216 KB
testcase_06 AC 2,178 ms
135,420 KB
testcase_07 AC 2,253 ms
135,348 KB
testcase_08 AC 2,302 ms
135,428 KB
testcase_09 AC 2,282 ms
136,376 KB
testcase_10 AC 2,578 ms
155,356 KB
testcase_11 AC 2,844 ms
170,016 KB
testcase_12 AC 2,304 ms
139,820 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 2,918 ms
170,428 KB
testcase_17 AC 2,954 ms
171,892 KB
testcase_18 AC 2,157 ms
135,148 KB
testcase_19 AC 2,130 ms
135,336 KB
testcase_20 AC 2,288 ms
135,232 KB
testcase_21 AC 2,318 ms
135,232 KB
testcase_22 AC 2,250 ms
135,236 KB
testcase_23 AC 2,513 ms
135,228 KB
testcase_24 AC 2,224 ms
135,244 KB
testcase_25 AC 2,342 ms
135,236 KB
testcase_26 AC 2,253 ms
135,256 KB
testcase_27 AC 2,263 ms
135,528 KB
testcase_28 AC 2,487 ms
136,344 KB
testcase_29 AC 2,396 ms
137,848 KB
testcase_30 AC 2,538 ms
145,396 KB
testcase_31 AC 2,784 ms
149,144 KB
testcase_32 TLE -
testcase_33 AC 2,537 ms
149,536 KB
testcase_34 AC 2,755 ms
163,716 KB
testcase_35 AC 2,707 ms
161,872 KB
testcase_36 AC 2,695 ms
162,892 KB
testcase_37 AC 2,572 ms
161,040 KB
testcase_38 AC 2,681 ms
164,888 KB
testcase_39 AC 2,408 ms
157,820 KB
testcase_40 AC 2,442 ms
157,960 KB
testcase_41 AC 2,450 ms
157,900 KB
testcase_42 AC 2,172 ms
135,156 KB
testcase_43 AC 2,163 ms
135,280 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 m = {}
local lim = 1000 * 1000
for i = 1, lim do
  m[i] = {}
end
local tt = {0}
for i = 2, lim do
  local mi = m[i]
  for j = 1, lim do
    if not mi[j] then tt[i] = j break end
  end
  local v = tt[i]
  for j = i + i, lim, i do
    m[j][v] = true
  end
end
-- print(os.clock())
-- os.exit()
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