結果

問題 No.1506 Unbalanced Pocky Game
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-06-22 21:44:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,548 KB
最終ジャッジ日時 2024-06-23 17:46:25
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 74 ms
12,912 KB
testcase_05 AC 82 ms
13,452 KB
testcase_06 AC 63 ms
12,340 KB
testcase_07 AC 54 ms
11,904 KB
testcase_08 AC 62 ms
12,244 KB
testcase_09 AC 83 ms
13,508 KB
testcase_10 AC 83 ms
13,520 KB
testcase_11 AC 54 ms
12,032 KB
testcase_12 AC 50 ms
12,032 KB
testcase_13 AC 42 ms
11,520 KB
testcase_14 AC 54 ms
12,032 KB
testcase_15 AC 49 ms
11,872 KB
testcase_16 AC 84 ms
13,504 KB
testcase_17 AC 58 ms
12,152 KB
testcase_18 AC 46 ms
11,520 KB
testcase_19 AC 45 ms
11,648 KB
testcase_20 AC 83 ms
13,400 KB
testcase_21 AC 50 ms
11,904 KB
testcase_22 AC 64 ms
12,452 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 105 ms
14,328 KB
testcase_26 AC 123 ms
23,116 KB
testcase_27 AC 123 ms
24,420 KB
testcase_28 AC 120 ms
23,916 KB
testcase_29 AC 130 ms
22,996 KB
testcase_30 AC 123 ms
24,548 KB
testcase_31 AC 120 ms
24,440 KB
testcase_32 AC 123 ms
23,100 KB
testcase_33 AC 122 ms
23,092 KB
testcase_34 AC 121 ms
22,772 KB
testcase_35 AC 123 ms
22,768 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 32 ms
10,880 KB
testcase_38 AC 32 ms
10,880 KB
testcase_39 AC 31 ms
10,880 KB
testcase_40 AC 30 ms
10,880 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 31 ms
10,752 KB
testcase_43 AC 31 ms
10,880 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 30 ms
10,880 KB
testcase_46 AC 63 ms
15,152 KB
testcase_47 AC 42 ms
12,160 KB
testcase_48 AC 44 ms
12,760 KB
testcase_49 AC 70 ms
15,916 KB
testcase_50 AC 63 ms
15,096 KB
testcase_51 AC 68 ms
15,764 KB
testcase_52 AC 60 ms
14,848 KB
testcase_53 AC 75 ms
16,640 KB
testcase_54 AC 48 ms
12,928 KB
testcase_55 AC 42 ms
12,288 KB
testcase_56 AC 42 ms
12,288 KB
testcase_57 AC 64 ms
15,584 KB
testcase_58 AC 43 ms
12,416 KB
testcase_59 AC 37 ms
11,776 KB
testcase_60 AC 52 ms
13,720 KB
testcase_61 AC 62 ms
15,460 KB
testcase_62 AC 56 ms
14,524 KB
testcase_63 AC 49 ms
13,348 KB
testcase_64 AC 67 ms
15,792 KB
testcase_65 AC 51 ms
13,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from bisect import bisect_right as br
from bisect import bisect_left as bl
sys.setrecursionlimit(2147483647)
from heapq import heappush, heappop,heappushpop
from collections import defaultdict
from itertools import accumulate, chain
from collections import Counter
from collections import deque
from operator import itemgetter
from itertools import permutations
mod = 10**9 + 7
inf = float('inf')
def I(): return int(sys.stdin.readline())
def LI(): return list(map(int,sys.stdin.readline().split()))

n = I()
a = LI()
f = True
for i in range(1, n):
    if a[i] == 1:
        f = not f
    else:
        if not f:
            f = True
if f:
    print("Alice")
else:
    print("Bob")
0