結果

問題 No.1506 Unbalanced Pocky Game
ユーザー nrktnrkt
提出日時 2021-05-17 18:32:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-04-16 07:12:20
合計ジャッジ時間 7,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,144 KB
testcase_01 AC 51 ms
54,528 KB
testcase_02 AC 52 ms
54,272 KB
testcase_03 WA -
testcase_04 AC 84 ms
84,096 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 73 ms
77,440 KB
testcase_09 WA -
testcase_10 AC 88 ms
90,368 KB
testcase_11 AC 70 ms
72,320 KB
testcase_12 WA -
testcase_13 AC 61 ms
66,048 KB
testcase_14 AC 68 ms
72,192 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 63 ms
69,248 KB
testcase_19 AC 62 ms
67,456 KB
testcase_20 AC 85 ms
90,624 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 52 ms
54,324 KB
testcase_25 AC 92 ms
98,432 KB
testcase_26 AC 110 ms
104,960 KB
testcase_27 AC 113 ms
104,968 KB
testcase_28 WA -
testcase_29 AC 112 ms
104,836 KB
testcase_30 AC 113 ms
104,960 KB
testcase_31 WA -
testcase_32 AC 115 ms
104,832 KB
testcase_33 AC 113 ms
105,472 KB
testcase_34 AC 107 ms
103,276 KB
testcase_35 AC 110 ms
103,552 KB
testcase_36 AC 51 ms
54,272 KB
testcase_37 AC 50 ms
54,912 KB
testcase_38 AC 52 ms
54,528 KB
testcase_39 AC 53 ms
54,144 KB
testcase_40 AC 51 ms
54,272 KB
testcase_41 AC 52 ms
54,144 KB
testcase_42 AC 51 ms
54,528 KB
testcase_43 AC 52 ms
54,860 KB
testcase_44 AC 51 ms
54,272 KB
testcase_45 AC 51 ms
54,528 KB
testcase_46 AC 72 ms
76,288 KB
testcase_47 AC 60 ms
66,304 KB
testcase_48 AC 65 ms
67,840 KB
testcase_49 AC 75 ms
78,336 KB
testcase_50 AC 74 ms
76,288 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 80 ms
82,432 KB
testcase_54 AC 64 ms
69,248 KB
testcase_55 AC 62 ms
66,304 KB
testcase_56 AC 62 ms
66,688 KB
testcase_57 AC 73 ms
76,160 KB
testcase_58 AC 65 ms
66,304 KB
testcase_59 WA -
testcase_60 AC 73 ms
70,784 KB
testcase_61 WA -
testcase_62 AC 78 ms
72,960 KB
testcase_63 AC 75 ms
69,632 KB
testcase_64 AC 79 ms
78,336 KB
testcase_65 AC 69 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
 
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(n):
    if a[i] == 1:
        f = False
    else:
        f = True
if f:
    print("Alice")
else:
    print("Bob")
0