結果

問題 No.1506 Unbalanced Pocky Game
ユーザー simansiman
提出日時 2021-05-16 18:58:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-10-05 03:35:25
合計ジャッジ時間 11,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 75 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 159 ms
25,216 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 133 ms
21,760 KB
testcase_09 WA -
testcase_10 AC 176 ms
28,288 KB
testcase_11 AC 121 ms
18,688 KB
testcase_12 WA -
testcase_13 AC 99 ms
14,848 KB
testcase_14 AC 122 ms
18,688 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 106 ms
15,360 KB
testcase_19 AC 102 ms
15,232 KB
testcase_20 AC 175 ms
28,160 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 75 ms
12,032 KB
testcase_25 AC 221 ms
30,592 KB
testcase_26 AC 230 ms
31,744 KB
testcase_27 AC 230 ms
30,976 KB
testcase_28 WA -
testcase_29 AC 240 ms
31,488 KB
testcase_30 AC 235 ms
30,976 KB
testcase_31 WA -
testcase_32 AC 239 ms
31,616 KB
testcase_33 AC 230 ms
31,744 KB
testcase_34 AC 227 ms
31,360 KB
testcase_35 AC 225 ms
31,360 KB
testcase_36 AC 74 ms
12,288 KB
testcase_37 AC 76 ms
12,160 KB
testcase_38 AC 77 ms
12,160 KB
testcase_39 AC 78 ms
12,032 KB
testcase_40 AC 77 ms
12,160 KB
testcase_41 AC 74 ms
12,032 KB
testcase_42 AC 74 ms
12,288 KB
testcase_43 AC 78 ms
12,160 KB
testcase_44 AC 78 ms
12,032 KB
testcase_45 AC 77 ms
12,160 KB
testcase_46 AC 133 ms
20,096 KB
testcase_47 AC 96 ms
14,464 KB
testcase_48 AC 108 ms
15,104 KB
testcase_49 AC 144 ms
21,248 KB
testcase_50 AC 132 ms
20,096 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 152 ms
22,784 KB
testcase_54 AC 109 ms
15,360 KB
testcase_55 AC 94 ms
14,592 KB
testcase_56 AC 95 ms
14,592 KB
testcase_57 AC 129 ms
19,968 KB
testcase_58 AC 94 ms
14,208 KB
testcase_59 WA -
testcase_60 AC 116 ms
15,872 KB
testcase_61 WA -
testcase_62 AC 126 ms
16,076 KB
testcase_63 AC 112 ms
15,872 KB
testcase_64 AC 140 ms
20,736 KB
testcase_65 AC 110 ms
15,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

dp = Array.new(N) { Array.new(2, false) }
dp[0][0] = true

1.upto(N - 1) do |i|
  if dp[i - 1][1]
    dp[i][0] = false
  end

  if A[i] > 1 && !dp[i][0]
    dp[i][1] = true
  end
end

if dp.last.last
  puts 'Alice'
else
  puts 'Bob'
end
0