結果
| 問題 | No.601 Midpoint Erase | 
| コンテスト | |
| ユーザー | 👑 | 
| 提出日時 | 2019-04-30 13:36:21 | 
| 言語 | Lua (LuaJit 2.1.1734355927) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 45 ms / 2,000 ms | 
| コード長 | 440 bytes | 
| コンパイル時間 | 349 ms | 
| コンパイル使用メモリ | 6,944 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-12-29 21:20:24 | 
| 合計ジャッジ時間 | 2,231 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 23 | 
ソースコード
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")
            
            
            
        