結果

問題 No.2071 Shift and OR
ユーザー roarisroaris
提出日時 2022-09-16 22:11:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-12-21 21:09:54
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
62,976 KB
testcase_01 AC 80 ms
63,856 KB
testcase_02 AC 104 ms
64,256 KB
testcase_03 AC 145 ms
65,280 KB
testcase_04 AC 118 ms
64,768 KB
testcase_05 AC 210 ms
66,944 KB
testcase_06 AC 131 ms
65,664 KB
testcase_07 AC 109 ms
64,384 KB
testcase_08 AC 133 ms
64,896 KB
testcase_09 AC 123 ms
65,024 KB
testcase_10 AC 128 ms
64,896 KB
testcase_11 AC 205 ms
67,584 KB
testcase_12 AC 207 ms
67,712 KB
testcase_13 AC 192 ms
67,072 KB
testcase_14 AC 58 ms
61,696 KB
testcase_15 AC 155 ms
66,048 KB
testcase_16 AC 160 ms
65,920 KB
testcase_17 AC 213 ms
67,712 KB
testcase_18 AC 81 ms
63,232 KB
testcase_19 AC 251 ms
68,224 KB
testcase_20 AC 220 ms
68,352 KB
testcase_21 AC 279 ms
70,272 KB
testcase_22 AC 239 ms
69,248 KB
testcase_23 AC 76 ms
96,640 KB
testcase_24 AC 47 ms
63,488 KB
testcase_25 AC 77 ms
77,440 KB
testcase_26 AC 62 ms
80,000 KB
testcase_27 AC 44 ms
59,648 KB
testcase_28 AC 82 ms
100,864 KB
testcase_29 AC 80 ms
100,864 KB
testcase_30 AC 146 ms
65,536 KB
testcase_31 AC 134 ms
65,920 KB
testcase_32 AC 140 ms
65,664 KB
testcase_33 AC 134 ms
65,536 KB
testcase_34 AC 161 ms
65,792 KB
testcase_35 AC 135 ms
65,408 KB
testcase_36 AC 140 ms
65,536 KB
testcase_37 AC 131 ms
65,280 KB
testcase_38 AC 138 ms
65,792 KB
testcase_39 AC 140 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

if N>=16:
    print((1<<16)-1)
    exit()

dp = [False]*(1<<16)
dp[0] = True

for Ai in A:
    ndp = [False]*(1<<16)
    now = Ai
    
    for _ in range(16):
        for S in range(1<<16):
            ndp[S|now] |= dp[S]
        
        now = (now%2)*(1<<15)+(now//2)
    
    dp = ndp

for i in range((1<<16)-1, -1, -1):
    if dp[i]:
        print(i)
        break
0