結果
| 問題 | No.601 Midpoint Erase |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-04-30 13:36:21 |
| 言語 | Lua (LuaJit 2.1.1774638290) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 440 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
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")