結果

問題 No.2071 Shift and OR
ユーザー H20H20
提出日時 2022-09-16 22:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,746 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 103,684 KB
最終ジャッジ日時 2024-06-01 13:02:43
合計ジャッジ時間 59,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,744 ms
76,868 KB
testcase_01 AC 1,742 ms
76,868 KB
testcase_02 AC 1,742 ms
77,172 KB
testcase_03 AC 1,742 ms
77,088 KB
testcase_04 AC 1,742 ms
77,084 KB
testcase_05 AC 1,741 ms
77,164 KB
testcase_06 AC 1,743 ms
77,084 KB
testcase_07 AC 1,741 ms
77,524 KB
testcase_08 AC 1,746 ms
77,012 KB
testcase_09 AC 1,742 ms
77,064 KB
testcase_10 AC 1,743 ms
77,132 KB
testcase_11 AC 1,744 ms
76,948 KB
testcase_12 AC 1,744 ms
77,364 KB
testcase_13 AC 1,743 ms
76,896 KB
testcase_14 AC 1,743 ms
76,788 KB
testcase_15 AC 1,741 ms
77,228 KB
testcase_16 AC 1,742 ms
77,160 KB
testcase_17 AC 1,745 ms
77,120 KB
testcase_18 AC 1,741 ms
76,800 KB
testcase_19 AC 1,742 ms
77,168 KB
testcase_20 AC 1,742 ms
77,088 KB
testcase_21 AC 41 ms
54,616 KB
testcase_22 AC 1,742 ms
77,180 KB
testcase_23 AC 82 ms
99,804 KB
testcase_24 AC 47 ms
63,904 KB
testcase_25 AC 60 ms
78,916 KB
testcase_26 AC 63 ms
81,904 KB
testcase_27 AC 44 ms
60,048 KB
testcase_28 AC 82 ms
103,684 KB
testcase_29 AC 82 ms
103,164 KB
testcase_30 AC 1,742 ms
77,188 KB
testcase_31 AC 1,741 ms
77,252 KB
testcase_32 AC 1,741 ms
77,184 KB
testcase_33 AC 1,741 ms
77,496 KB
testcase_34 AC 1,742 ms
77,152 KB
testcase_35 AC 1,744 ms
76,876 KB
testcase_36 AC 1,744 ms
77,216 KB
testcase_37 AC 1,743 ms
77,212 KB
testcase_38 AC 1,742 ms
77,116 KB
testcase_39 AC 1,741 ms
77,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time
from random import shuffle

stime = time()
N = int(input())
A = list(map(int, input().split()))
if N >= 15:
    print(2**16-1)
    exit()
ans = 0
while stime+1.7 > time():
    v = 0
    nv = 0
    shuffle(A)
    for a in A:
        for i in range(16):
            nv = max(v|a,nv)
            a = a//2+2**15*(a%2)
        v = nv

    ans = max(v,ans)
print(ans)
0