結果

問題 No.601 Midpoint Erase
ユーザー finefine
提出日時 2017-12-01 00:51:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 11,552 KB
実行使用メモリ 15,352 KB
最終ジャッジ日時 2023-08-24 18:34:59
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
15,292 KB
testcase_01 AC 78 ms
15,296 KB
testcase_02 AC 78 ms
15,240 KB
testcase_03 AC 162 ms
15,192 KB
testcase_04 AC 174 ms
15,224 KB
testcase_05 AC 145 ms
15,300 KB
testcase_06 AC 116 ms
15,288 KB
testcase_07 AC 167 ms
15,188 KB
testcase_08 AC 154 ms
15,140 KB
testcase_09 AC 170 ms
15,352 KB
testcase_10 AC 98 ms
15,204 KB
testcase_11 AC 208 ms
15,272 KB
testcase_12 AC 138 ms
15,268 KB
testcase_13 AC 79 ms
15,300 KB
testcase_14 AC 78 ms
15,304 KB
testcase_15 AC 79 ms
15,116 KB
testcase_16 AC 78 ms
15,152 KB
testcase_17 AC 80 ms
15,128 KB
testcase_18 AC 78 ms
15,308 KB
testcase_19 AC 79 ms
15,120 KB
testcase_20 AC 78 ms
15,244 KB
testcase_21 AC 77 ms
15,252 KB
testcase_22 AC 77 ms
15,180 KB
testcase_23 AC 77 ms
15,284 KB
testcase_24 AC 77 ms
15,236 KB
testcase_25 AC 77 ms
15,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
cnt = Array.new(4, 0)
n.times do 
    x, y = gets.split.map(&:to_i)
    cnt[x % 2 * 2 + y % 2] += 1
end
puts cnt.map{|x|x / 2}.inject(:+) % 2 == 0 ? "Bob" : "Alice"
0