結果

問題 No.2071 Shift and OR
ユーザー lloyzlloyz
提出日時 2022-09-16 23:30:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-12-21 23:04:16
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
61,696 KB
testcase_01 AC 64 ms
62,336 KB
testcase_02 AC 79 ms
63,488 KB
testcase_03 AC 125 ms
64,128 KB
testcase_04 AC 95 ms
63,360 KB
testcase_05 AC 180 ms
65,536 KB
testcase_06 AC 108 ms
63,616 KB
testcase_07 AC 83 ms
62,848 KB
testcase_08 AC 92 ms
63,872 KB
testcase_09 AC 98 ms
63,744 KB
testcase_10 AC 100 ms
63,488 KB
testcase_11 AC 186 ms
66,176 KB
testcase_12 AC 190 ms
66,560 KB
testcase_13 AC 170 ms
65,536 KB
testcase_14 AC 51 ms
60,416 KB
testcase_15 AC 146 ms
64,512 KB
testcase_16 AC 142 ms
64,512 KB
testcase_17 AC 196 ms
66,432 KB
testcase_18 AC 64 ms
61,696 KB
testcase_19 AC 227 ms
66,816 KB
testcase_20 AC 221 ms
67,072 KB
testcase_21 AC 274 ms
69,760 KB
testcase_22 AC 243 ms
68,096 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
51,584 KB
testcase_27 AC 38 ms
51,712 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 125 ms
64,128 KB
testcase_31 AC 101 ms
64,896 KB
testcase_32 AC 101 ms
64,640 KB
testcase_33 AC 103 ms
64,640 KB
testcase_34 AC 110 ms
64,896 KB
testcase_35 AC 113 ms
64,000 KB
testcase_36 AC 120 ms
63,872 KB
testcase_37 AC 108 ms
64,640 KB
testcase_38 AC 102 ms
64,512 KB
testcase_39 AC 102 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n >= 16:
    print((1 << 16) - 1)
    exit()

A = list(map(int, input().split()))
DP = [[False for _ in range(1 << 16)] for _ in range(n + 1)]
header = 1 << 15
for i in range(n + 1):
    DP[i][0] = True
for i in range(n):
    a = A[i]
    for j in range(16):
        for k in range(1 << 16):
            if DP[i][k]:
                DP[i + 1][k | a] |= DP[i][k]
        a, r = divmod(a, 2)
        a |= header * r
for i in range((1 << 16) - 1, 0, -1):
    if DP[n][i]:
        print(i)
        break
0