結果

問題 No.2071 Shift and OR
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-16 21:56:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-12-21 19:41:24
合計ジャッジ時間 4,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
58,624 KB
testcase_01 AC 59 ms
61,056 KB
testcase_02 AC 60 ms
61,440 KB
testcase_03 AC 74 ms
67,328 KB
testcase_04 AC 67 ms
62,848 KB
testcase_05 AC 99 ms
76,288 KB
testcase_06 AC 66 ms
64,128 KB
testcase_07 AC 63 ms
61,568 KB
testcase_08 AC 64 ms
62,080 KB
testcase_09 AC 65 ms
63,488 KB
testcase_10 AC 69 ms
64,384 KB
testcase_11 AC 102 ms
76,032 KB
testcase_12 AC 101 ms
76,032 KB
testcase_13 AC 94 ms
74,752 KB
testcase_14 AC 52 ms
58,240 KB
testcase_15 AC 81 ms
70,400 KB
testcase_16 AC 82 ms
69,888 KB
testcase_17 AC 101 ms
76,032 KB
testcase_18 AC 58 ms
60,672 KB
testcase_19 AC 108 ms
76,160 KB
testcase_20 AC 109 ms
76,032 KB
testcase_21 AC 126 ms
76,160 KB
testcase_22 AC 113 ms
76,160 KB
testcase_23 AC 95 ms
96,128 KB
testcase_24 AC 55 ms
61,312 KB
testcase_25 AC 72 ms
75,904 KB
testcase_26 AC 75 ms
78,720 KB
testcase_27 AC 51 ms
57,984 KB
testcase_28 AC 99 ms
100,352 KB
testcase_29 AC 100 ms
100,224 KB
testcase_30 AC 74 ms
67,072 KB
testcase_31 AC 67 ms
63,360 KB
testcase_32 AC 66 ms
63,488 KB
testcase_33 AC 67 ms
63,616 KB
testcase_34 AC 67 ms
64,768 KB
testcase_35 AC 72 ms
64,896 KB
testcase_36 AC 72 ms
66,432 KB
testcase_37 AC 67 ms
64,128 KB
testcase_38 AC 67 ms
63,616 KB
testcase_39 AC 68 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n > 16:
    print(2**16-1)
    exit()


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

dp[0] = 1

for a in A:
    for i in range(1<<16)[::-1]:
        if dp[i] == 0:
            continue
        base = a
        # print("base",base)
        for j in range(16):
            dp[i|base] = 1
            base =  (1<<15)*(base%2) + base//2 
            # print(base)
for i in range(1<<16)[::-1]:
    if dp[i]:
        print(i)
        exit()
0