結果

問題 No.582 キャンディー・ボックス3
コンテスト
ユーザー obakyan
提出日時 2019-04-30 13:57:46
言語 Lua
(LuaJit 2.1.1774638290)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 291 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 157 ms
コンパイル使用メモリ 6,528 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-06-03 16:18:46
合計ジャッジ時間 1,108 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

local ior = io.input()
local n = ior:read("*n")
local tot = 0
local b2 = 0
local b3 = false
for i = 1, n do
  local c = ior:read("*n")
  tot = tot + c
  if(c == 2) then b2 = b2 + 1
  elseif(3 <= c) then b3 = true end
end
if(tot % 2 == 0 or b3 or 2 <= b2) then print("B") else print("A") end
0