結果

問題 No.2071 Shift and OR
ユーザー shobonvipshobonvip
提出日時 2022-09-16 22:01:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 114,176 KB
最終ジャッジ日時 2024-06-01 12:58:29
合計ジャッジ時間 6,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,268 KB
testcase_01 AC 61 ms
63,504 KB
testcase_02 AC 73 ms
64,236 KB
testcase_03 AC 106 ms
65,992 KB
testcase_04 AC 87 ms
64,684 KB
testcase_05 AC 143 ms
67,460 KB
testcase_06 AC 90 ms
65,064 KB
testcase_07 AC 76 ms
63,576 KB
testcase_08 AC 82 ms
65,120 KB
testcase_09 AC 87 ms
65,452 KB
testcase_10 AC 89 ms
65,456 KB
testcase_11 AC 143 ms
68,492 KB
testcase_12 AC 147 ms
68,352 KB
testcase_13 AC 137 ms
66,824 KB
testcase_14 AC 48 ms
60,016 KB
testcase_15 AC 117 ms
64,916 KB
testcase_16 AC 115 ms
66,640 KB
testcase_17 AC 150 ms
67,892 KB
testcase_18 AC 62 ms
64,188 KB
testcase_19 AC 171 ms
67,548 KB
testcase_20 AC 166 ms
67,488 KB
testcase_21 AC 202 ms
71,488 KB
testcase_22 AC 195 ms
70,248 KB
testcase_23 AC 158 ms
109,788 KB
testcase_24 AC 126 ms
75,376 KB
testcase_25 AC 139 ms
89,728 KB
testcase_26 AC 139 ms
93,156 KB
testcase_27 AC 122 ms
71,468 KB
testcase_28 AC 159 ms
114,176 KB
testcase_29 AC 160 ms
113,764 KB
testcase_30 AC 104 ms
65,444 KB
testcase_31 AC 90 ms
65,408 KB
testcase_32 AC 88 ms
65,924 KB
testcase_33 AC 91 ms
66,128 KB
testcase_34 AC 96 ms
65,716 KB
testcase_35 AC 98 ms
65,264 KB
testcase_36 AC 103 ms
67,028 KB
testcase_37 AC 95 ms
67,004 KB
testcase_38 AC 91 ms
65,776 KB
testcase_39 AC 91 ms
65,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# BIT DP を行う
# A[i] > 0 だから, 最大16個見ればok 
# dp[i][j] : i番目まで見てjが到達可能

n = int(input())
a = list(map(int,input().split()))
dp = [[0] * (1 << 16) for i in range(min(n, 16) + 1)]
dp[0][0] = 1

for i in range(min(n, 16)):
	for j in range(16):
		for k in range(1 << 16):
			if dp[i][k] == 1:
				dp[i+1][k|a[i]] = 1
		a[i] = (a[i] // 2) + (1 << 15) * (a[i] % 2)

r = 0
for i in range(1 << 16):
	if dp[min(n, 16)][i] == 1:
		r = i

print(r)
0