結果

問題 No.2813 Cookie
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-13 11:44:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 77,152 KB
最終ジャッジ日時 2024-07-13 13:06:40
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,220 KB
testcase_01 AC 104 ms
76,440 KB
testcase_02 AC 117 ms
76,492 KB
testcase_03 AC 102 ms
76,452 KB
testcase_04 AC 123 ms
76,496 KB
testcase_05 AC 125 ms
76,556 KB
testcase_06 AC 111 ms
76,688 KB
testcase_07 AC 119 ms
76,496 KB
testcase_08 AC 114 ms
76,540 KB
testcase_09 AC 125 ms
77,152 KB
testcase_10 AC 126 ms
76,820 KB
testcase_11 AC 70 ms
76,128 KB
testcase_12 AC 69 ms
75,872 KB
testcase_13 AC 70 ms
75,960 KB
testcase_14 AC 68 ms
75,912 KB
testcase_15 AC 69 ms
76,132 KB
testcase_16 AC 70 ms
75,964 KB
testcase_17 AC 66 ms
75,940 KB
testcase_18 AC 69 ms
76,316 KB
testcase_19 AC 67 ms
75,952 KB
testcase_20 AC 69 ms
76,084 KB
testcase_21 AC 73 ms
76,200 KB
testcase_22 AC 62 ms
75,884 KB
testcase_23 AC 68 ms
76,340 KB
testcase_24 AC 65 ms
75,636 KB
testcase_25 AC 67 ms
75,576 KB
testcase_26 AC 37 ms
52,092 KB
testcase_27 AC 38 ms
53,296 KB
testcase_28 AC 38 ms
53,156 KB
testcase_29 AC 38 ms
53,284 KB
testcase_30 AC 39 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(x):
    if x<=4:return [0,1,1,2,2][x]
    if x%3==1:return (x//3)*4-2
    return ((x-1)//3)*4
for i in range(int(input())):
    N=int(input())
    A=list(map(int,input().split()))
    gru=0
    for a in A:gru^=calc(a)
    print("Bob" if gru==0 else "Alice")
0