結果

問題 No.2071 Shift and OR
ユーザー AEnAEn
提出日時 2022-12-15 23:42:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 100,996 KB
最終ジャッジ日時 2024-11-14 15:26:48
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,092 KB
testcase_01 AC 52 ms
64,992 KB
testcase_02 AC 56 ms
65,780 KB
testcase_03 AC 77 ms
70,700 KB
testcase_04 AC 64 ms
67,140 KB
testcase_05 AC 102 ms
78,300 KB
testcase_06 AC 67 ms
68,660 KB
testcase_07 AC 57 ms
66,240 KB
testcase_08 AC 61 ms
66,404 KB
testcase_09 AC 65 ms
68,116 KB
testcase_10 AC 67 ms
67,784 KB
testcase_11 AC 109 ms
79,944 KB
testcase_12 AC 112 ms
79,420 KB
testcase_13 AC 99 ms
78,196 KB
testcase_14 AC 45 ms
59,792 KB
testcase_15 AC 85 ms
73,836 KB
testcase_16 AC 84 ms
72,676 KB
testcase_17 AC 108 ms
80,064 KB
testcase_18 AC 51 ms
63,244 KB
testcase_19 AC 136 ms
82,368 KB
testcase_20 AC 115 ms
80,312 KB
testcase_21 AC 151 ms
84,196 KB
testcase_22 AC 139 ms
83,104 KB
testcase_23 AC 75 ms
96,804 KB
testcase_24 AC 44 ms
62,944 KB
testcase_25 AC 58 ms
76,496 KB
testcase_26 AC 60 ms
79,236 KB
testcase_27 AC 41 ms
58,228 KB
testcase_28 AC 79 ms
100,384 KB
testcase_29 AC 80 ms
100,996 KB
testcase_30 AC 81 ms
71,708 KB
testcase_31 AC 65 ms
66,924 KB
testcase_32 AC 66 ms
67,228 KB
testcase_33 AC 69 ms
68,112 KB
testcase_34 AC 71 ms
69,956 KB
testcase_35 AC 72 ms
69,640 KB
testcase_36 AC 78 ms
70,504 KB
testcase_37 AC 70 ms
69,100 KB
testcase_38 AC 69 ms
69,520 KB
testcase_39 AC 67 ms
68,380 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