結果

問題 No.601 Midpoint Erase
コンテスト
ユーザー obakyan
提出日時 2019-04-30 13:36:21
言語 Lua
(LuaJit 2.1.1774638290)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 440 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 228 ms
コンパイル使用メモリ 6,400 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-06-03 15:00:48
合計ジャッジ時間 2,442 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

local ior = io.input()
local oo, oe, eo, ee = 0, 0, 0, 0
local n = ior:read("*n")
for i = 1, n do
  local a, b = ior:read("*n", "*n")
  if(a % 2 == 0) then
    if(b % 2 == 0) then ee = ee + 1 else eo = eo + 1 end
  else
    if(b % 2 == 0) then oe = oe + 1 else oo = oo + 1 end
  end
end
oo, oe, eo, ee = math.floor(oo / 2), math.floor(oe / 2), math.floor(eo / 2), math.floor(ee / 2)
print((oo + oe + eo + ee) % 2 == 0 and "Bob" or "Alice")
0