結果

問題 No.2538 2進元ゲーム
ユーザー ecotteaecottea
提出日時 2023-09-30 19:22:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 483 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 77,048 KB
最終ジャッジ日時 2024-07-23 15:47:59
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,764 KB
testcase_01 AC 39 ms
52,560 KB
testcase_02 AC 38 ms
52,196 KB
testcase_03 AC 39 ms
52,668 KB
testcase_04 AC 38 ms
52,800 KB
testcase_05 AC 37 ms
52,752 KB
testcase_06 AC 38 ms
52,308 KB
testcase_07 AC 38 ms
52,700 KB
testcase_08 AC 38 ms
53,636 KB
testcase_09 AC 38 ms
52,572 KB
testcase_10 AC 40 ms
58,920 KB
testcase_11 AC 39 ms
52,804 KB
testcase_12 AC 41 ms
58,804 KB
testcase_13 AC 42 ms
57,864 KB
testcase_14 AC 39 ms
52,312 KB
testcase_15 AC 38 ms
52,420 KB
testcase_16 AC 38 ms
53,032 KB
testcase_17 AC 41 ms
58,612 KB
testcase_18 AC 39 ms
52,680 KB
testcase_19 AC 43 ms
57,808 KB
testcase_20 AC 41 ms
58,336 KB
testcase_21 AC 39 ms
52,460 KB
testcase_22 AC 38 ms
53,672 KB
testcase_23 AC 41 ms
58,240 KB
testcase_24 AC 39 ms
51,876 KB
testcase_25 AC 38 ms
52,628 KB
testcase_26 AC 38 ms
52,472 KB
testcase_27 AC 56 ms
65,420 KB
testcase_28 AC 62 ms
74,252 KB
testcase_29 AC 100 ms
76,292 KB
testcase_30 AC 402 ms
77,048 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

dp = {}

def get_nimber(a):
    if a < 0:
        return 100
    
    if a in dp:
        return dp[a]
    
    ex = [0] * 10
    for i in range(60):
        if a % 2 == 1:
            g = get_nimber(i)
            ex[g] = 1
        a //= 2
    
    for i in range(10):
        if ex[i] == 0:
            return i
    
    return -1

res = 0

for i in range(n):
    g = get_nimber(a[i])
    res ^= g

print(2 if res == 0 else 1)
0