結果

問題 No.2071 Shift and OR
ユーザー ntudantuda
提出日時 2022-09-18 21:42:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-06-01 15:44:51
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,568 KB
testcase_01 AC 58 ms
62,208 KB
testcase_02 AC 64 ms
62,208 KB
testcase_03 AC 70 ms
63,232 KB
testcase_04 AC 69 ms
62,880 KB
testcase_05 AC 82 ms
64,896 KB
testcase_06 AC 67 ms
62,720 KB
testcase_07 AC 64 ms
62,208 KB
testcase_08 AC 66 ms
62,720 KB
testcase_09 AC 66 ms
62,720 KB
testcase_10 AC 67 ms
62,720 KB
testcase_11 AC 83 ms
65,664 KB
testcase_12 AC 84 ms
65,408 KB
testcase_13 AC 80 ms
65,152 KB
testcase_14 AC 50 ms
60,288 KB
testcase_15 AC 75 ms
64,000 KB
testcase_16 AC 75 ms
64,000 KB
testcase_17 AC 84 ms
65,408 KB
testcase_18 AC 57 ms
61,056 KB
testcase_19 AC 88 ms
65,920 KB
testcase_20 AC 87 ms
65,792 KB
testcase_21 AC 99 ms
68,352 KB
testcase_22 AC 91 ms
66,432 KB
testcase_23 AC 78 ms
96,256 KB
testcase_24 AC 48 ms
61,312 KB
testcase_25 AC 59 ms
76,160 KB
testcase_26 AC 62 ms
79,104 KB
testcase_27 AC 43 ms
57,728 KB
testcase_28 AC 82 ms
100,352 KB
testcase_29 AC 81 ms
100,224 KB
testcase_30 AC 71 ms
63,232 KB
testcase_31 AC 70 ms
63,488 KB
testcase_32 AC 71 ms
63,232 KB
testcase_33 AC 70 ms
63,488 KB
testcase_34 AC 71 ms
63,488 KB
testcase_35 AC 72 ms
63,232 KB
testcase_36 AC 71 ms
63,488 KB
testcase_37 AC 71 ms
63,232 KB
testcase_38 AC 71 ms
63,232 KB
testcase_39 AC 72 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
NM = 1 << 16
if N >= 16:
    print(NM - 1)
    exit()

dp = [0] * NM
dp[0] = 1
for a in A:
    dp2 = [0] * NM
    for i in range(16):
        for j in range(NM):
            dp2[j|a] |= dp[j]
        a = (a >> 1) | ((a & 1) << 15)
    dp = dp2
for i in reversed(range(NM)):
    if dp[i] == 1:
        break
print(i)
0