結果

問題 No.1506 Unbalanced Pocky Game
ユーザー simansiman
提出日時 2021-05-16 20:05:44
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-10-05 05:55:45
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 WA -
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 77 ms
12,416 KB
testcase_04 AC 118 ms
19,584 KB
testcase_05 AC 122 ms
20,736 KB
testcase_06 AC 105 ms
17,536 KB
testcase_07 AC 97 ms
15,488 KB
testcase_08 AC 105 ms
17,792 KB
testcase_09 AC 124 ms
20,992 KB
testcase_10 AC 126 ms
20,992 KB
testcase_11 AC 97 ms
15,616 KB
testcase_12 AC 91 ms
15,232 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 87 ms
14,976 KB
testcase_16 AC 114 ms
20,736 KB
testcase_17 AC 97 ms
16,768 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 91 ms
15,360 KB
testcase_22 AC 106 ms
18,304 KB
testcase_23 AC 75 ms
12,032 KB
testcase_24 AC 74 ms
12,288 KB
testcase_25 AC 135 ms
25,600 KB
testcase_26 AC 137 ms
24,704 KB
testcase_27 WA -
testcase_28 AC 136 ms
24,320 KB
testcase_29 AC 136 ms
24,576 KB
testcase_30 WA -
testcase_31 AC 137 ms
25,344 KB
testcase_32 AC 137 ms
24,704 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 73 ms
12,160 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 73 ms
12,160 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 72 ms
12,160 KB
testcase_45 AC 73 ms
12,160 KB
testcase_46 AC 97 ms
16,768 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 100 ms
17,024 KB
testcase_50 AC 100 ms
16,896 KB
testcase_51 AC 100 ms
16,896 KB
testcase_52 AC 98 ms
16,256 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 83 ms
13,312 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 82 ms
13,184 KB
testcase_59 AC 78 ms
12,544 KB
testcase_60 WA -
testcase_61 AC 100 ms
16,640 KB
testcase_62 WA -
testcase_63 AC 86 ms
14,592 KB
testcase_64 AC 101 ms
16,896 KB
testcase_65 AC 88 ms
14,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

if A.last != 1
  puts 'Alice'
  exit
end

turn = 0

while A.last == 1
  A.pop
  turn += 1
end

if A.empty?
  if turn % 2 == 0
    puts 'Bob'
  else
    puts 'Alice'
  end
else
  if turn % 2 == 0
    puts 'Alice'
  else
    puts 'Bomb'
  end
end
0