結果

問題 No.2813 Cookie
ユーザー とりゐとりゐ
提出日時 2024-07-19 22:10:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,284 KB
最終ジャッジ日時 2024-07-19 22:10:41
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 143 ms
77,716 KB
testcase_02 AC 155 ms
77,312 KB
testcase_03 AC 129 ms
78,284 KB
testcase_04 AC 180 ms
77,184 KB
testcase_05 AC 158 ms
77,056 KB
testcase_06 AC 144 ms
77,224 KB
testcase_07 AC 153 ms
77,568 KB
testcase_08 AC 159 ms
77,348 KB
testcase_09 AC 155 ms
77,220 KB
testcase_10 AC 167 ms
77,800 KB
testcase_11 AC 69 ms
75,904 KB
testcase_12 AC 71 ms
75,752 KB
testcase_13 AC 70 ms
75,628 KB
testcase_14 AC 68 ms
75,520 KB
testcase_15 AC 74 ms
75,888 KB
testcase_16 AC 72 ms
75,648 KB
testcase_17 AC 67 ms
75,640 KB
testcase_18 AC 68 ms
75,776 KB
testcase_19 AC 68 ms
75,648 KB
testcase_20 AC 71 ms
75,904 KB
testcase_21 AC 82 ms
76,088 KB
testcase_22 AC 66 ms
76,032 KB
testcase_23 AC 74 ms
75,776 KB
testcase_24 AC 65 ms
75,520 KB
testcase_25 AC 67 ms
75,700 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
  if x<=2:
    return 1
  if x<=4:
    return 2
  if x<=6:
    return 4
  y=(x+2)//3
  z=(y-1)*4
  if x%3==1:
    z-=2
  return z
  
  
def solve():
  n=int(input())
  a=list(map(int,input().split()))
  g=0
  for i in a:
    g^=f(i)
  if g==0:
    print("Bob")
  else:
    print("Alice")
  
for _ in range(int(input())):
  solve()
0