結果

問題 No.2071 Shift and OR
ユーザー AEnAEn
提出日時 2022-12-15 23:39:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 101,288 KB
最終ジャッジ日時 2024-11-14 15:23:31
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,700 KB
testcase_01 AC 51 ms
64,140 KB
testcase_02 AC 56 ms
64,440 KB
testcase_03 AC 71 ms
70,196 KB
testcase_04 AC 62 ms
67,188 KB
testcase_05 WA -
testcase_06 AC 64 ms
67,200 KB
testcase_07 AC 58 ms
65,716 KB
testcase_08 AC 57 ms
65,924 KB
testcase_09 AC 62 ms
66,988 KB
testcase_10 AC 63 ms
67,444 KB
testcase_11 AC 97 ms
77,300 KB
testcase_12 AC 93 ms
76,120 KB
testcase_13 WA -
testcase_14 AC 43 ms
59,508 KB
testcase_15 WA -
testcase_16 AC 81 ms
71,276 KB
testcase_17 WA -
testcase_18 AC 51 ms
63,672 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 74 ms
96,676 KB
testcase_24 AC 43 ms
62,544 KB
testcase_25 AC 58 ms
76,588 KB
testcase_26 AC 58 ms
80,384 KB
testcase_27 AC 40 ms
58,328 KB
testcase_28 AC 77 ms
100,684 KB
testcase_29 AC 77 ms
101,288 KB
testcase_30 AC 69 ms
68,652 KB
testcase_31 AC 60 ms
67,248 KB
testcase_32 AC 61 ms
67,284 KB
testcase_33 AC 62 ms
67,148 KB
testcase_34 AC 65 ms
68,584 KB
testcase_35 AC 67 ms
67,976 KB
testcase_36 AC 69 ms
69,096 KB
testcase_37 AC 64 ms
68,216 KB
testcase_38 AC 64 ms
67,224 KB
testcase_39 AC 63 ms
68,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

def f(x):
    return x//2+(1<<15)*(x&1)
if N>=16:
    exit(print((1<<16)-1))
else:
    dp = [[False]*(1<<16) for _ in range(N+1)]
    dp[0][0] = True
    for i in range(1,N+1):
        for j in range(1<<16):
            if dp[i-1][j]:
                for k in range(16):
                    dp[i][j^A[i-1]] = True
                    A[i-1] = f(A[i-1])
    for i in range((1<<16)-1,-1,-1):
        if dp[-1][i]:
            print(i)
            exit()
0