結果

問題 No.2071 Shift and OR
ユーザー terasaterasa
提出日時 2022-11-05 11:40:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,868 KB
最終ジャッジ日時 2024-07-19 06:10:31
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
70,400 KB
testcase_01 AC 65 ms
72,576 KB
testcase_02 AC 69 ms
74,624 KB
testcase_03 AC 88 ms
82,044 KB
testcase_04 AC 77 ms
76,416 KB
testcase_05 AC 124 ms
82,048 KB
testcase_06 AC 74 ms
76,544 KB
testcase_07 AC 67 ms
74,752 KB
testcase_08 AC 70 ms
75,776 KB
testcase_09 AC 74 ms
77,056 KB
testcase_10 AC 74 ms
77,440 KB
testcase_11 AC 108 ms
82,888 KB
testcase_12 AC 109 ms
82,844 KB
testcase_13 AC 101 ms
82,768 KB
testcase_14 AC 59 ms
69,760 KB
testcase_15 AC 93 ms
81,952 KB
testcase_16 AC 102 ms
81,908 KB
testcase_17 AC 111 ms
82,424 KB
testcase_18 AC 64 ms
72,960 KB
testcase_19 AC 138 ms
81,748 KB
testcase_20 AC 112 ms
82,480 KB
testcase_21 AC 153 ms
83,928 KB
testcase_22 AC 131 ms
82,396 KB
testcase_23 AC 93 ms
101,356 KB
testcase_24 AC 58 ms
71,936 KB
testcase_25 AC 75 ms
86,276 KB
testcase_26 AC 76 ms
88,128 KB
testcase_27 AC 57 ms
68,224 KB
testcase_28 AC 93 ms
104,868 KB
testcase_29 AC 102 ms
104,704 KB
testcase_30 AC 90 ms
81,920 KB
testcase_31 AC 76 ms
77,440 KB
testcase_32 AC 78 ms
77,056 KB
testcase_33 AC 74 ms
77,184 KB
testcase_34 AC 78 ms
77,872 KB
testcase_35 AC 84 ms
78,568 KB
testcase_36 AC 100 ms
81,828 KB
testcase_37 AC 76 ms
77,952 KB
testcase_38 AC 75 ms
77,664 KB
testcase_39 AC 75 ms
77,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Optional
import sys
import itertools
import heapq
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

# for AtCoder Easy test
if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input().rstrip()


N = int(input())
A = readlist()

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

dp = [False] * (1 << 16)
dp[0] = True
for a in A:
    ndp = [False] * (1 << 16)
    for j in range(1 << 16):
        if dp[j] is False:
            continue
        acc = a
        for k in range(16):
            ndp[j | acc] = True
            if acc & 1:
                acc = (acc >> 1) + (1 << 15)
            else:
                acc = (acc >> 1)
    dp = ndp

for s in range(1 << 16)[::-1]:
    if dp[s] is True:
        print(s)
        break
0