結果

問題 No.2538 2進元ゲーム
ユーザー ecotteaecottea
提出日時 2023-09-30 19:45:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 118,568 KB
最終ジャッジ日時 2024-07-23 19:22:25
合計ジャッジ時間 5,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,104 KB
testcase_01 AC 59 ms
63,360 KB
testcase_02 AC 57 ms
62,976 KB
testcase_03 AC 60 ms
63,232 KB
testcase_04 AC 59 ms
63,232 KB
testcase_05 AC 60 ms
63,104 KB
testcase_06 AC 61 ms
63,360 KB
testcase_07 AC 59 ms
62,848 KB
testcase_08 AC 59 ms
63,360 KB
testcase_09 AC 60 ms
62,848 KB
testcase_10 AC 58 ms
62,848 KB
testcase_11 AC 58 ms
63,232 KB
testcase_12 AC 59 ms
63,488 KB
testcase_13 AC 58 ms
63,360 KB
testcase_14 AC 59 ms
63,488 KB
testcase_15 AC 58 ms
63,104 KB
testcase_16 AC 57 ms
63,360 KB
testcase_17 AC 60 ms
63,360 KB
testcase_18 AC 59 ms
63,360 KB
testcase_19 AC 60 ms
63,104 KB
testcase_20 AC 58 ms
63,360 KB
testcase_21 AC 59 ms
63,104 KB
testcase_22 AC 58 ms
63,104 KB
testcase_23 AC 56 ms
63,560 KB
testcase_24 AC 57 ms
63,616 KB
testcase_25 AC 57 ms
62,976 KB
testcase_26 AC 56 ms
63,488 KB
testcase_27 AC 59 ms
64,256 KB
testcase_28 AC 66 ms
66,304 KB
testcase_29 AC 71 ms
69,504 KB
testcase_30 AC 101 ms
80,256 KB
testcase_31 AC 257 ms
118,552 KB
testcase_32 AC 288 ms
118,476 KB
testcase_33 AC 283 ms
118,296 KB
testcase_34 AC 186 ms
117,708 KB
testcase_35 AC 298 ms
118,568 KB
testcase_36 AC 202 ms
117,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
import sys


content = input()
pattern = r'^(\d+)$'
result = re.match(pattern, content)

if not result:
    sys.exit("format error.")

n = int(content)

if not (1 <= n and n <= 10**5):
    sys.exit("N")


content = input()
pattern = r'^(-?\d+)( (-?\d+))*$'
result = re.match(pattern, content)

if not result:
    sys.exit("format error.")

a = list(map(int, content.split()))

if len(a) != n:
    sys.exit("A")

for i in range(n):
    if not (-(10**18) <= a[i] and a[i] <= 10**18):
        sys.exit("A")


dp = {0 : 0}

def get_nimber(a):
    global dp

    if a < 0:
        return 100
    
    if a in dp:
        return dp[a]
    
    a0 = 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:
            dp[a0] = i
            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