結果

問題 No.2071 Shift and OR
ユーザー 👑 KazunKazun
提出日時 2022-09-16 21:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-06-01 12:11:58
合計ジャッジ時間 4,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,440 KB
testcase_01 AC 59 ms
62,592 KB
testcase_02 AC 70 ms
66,944 KB
testcase_03 AC 78 ms
70,016 KB
testcase_04 AC 74 ms
69,376 KB
testcase_05 AC 91 ms
73,216 KB
testcase_06 AC 75 ms
69,504 KB
testcase_07 AC 70 ms
67,328 KB
testcase_08 AC 75 ms
68,864 KB
testcase_09 AC 75 ms
69,504 KB
testcase_10 AC 74 ms
69,120 KB
testcase_11 AC 94 ms
74,752 KB
testcase_12 AC 96 ms
75,648 KB
testcase_13 AC 90 ms
73,344 KB
testcase_14 AC 49 ms
59,776 KB
testcase_15 AC 82 ms
71,296 KB
testcase_16 AC 84 ms
71,424 KB
testcase_17 AC 95 ms
73,932 KB
testcase_18 AC 58 ms
62,976 KB
testcase_19 AC 98 ms
75,264 KB
testcase_20 AC 99 ms
74,880 KB
testcase_21 AC 113 ms
79,360 KB
testcase_22 AC 103 ms
77,056 KB
testcase_23 AC 78 ms
96,256 KB
testcase_24 AC 47 ms
61,540 KB
testcase_25 AC 61 ms
76,416 KB
testcase_26 AC 62 ms
78,720 KB
testcase_27 AC 46 ms
58,044 KB
testcase_28 AC 84 ms
100,608 KB
testcase_29 AC 85 ms
100,176 KB
testcase_30 AC 81 ms
71,708 KB
testcase_31 AC 78 ms
69,888 KB
testcase_32 AC 79 ms
70,656 KB
testcase_33 AC 80 ms
70,784 KB
testcase_34 AC 79 ms
70,912 KB
testcase_35 AC 80 ms
71,296 KB
testcase_36 AC 80 ms
71,972 KB
testcase_37 AC 79 ms
71,428 KB
testcase_38 AC 80 ms
70,664 KB
testcase_39 AC 79 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def shift(x):
	return x//2+pow(2,15)*(x%2)

def solve():
	N=int(input())
	A=list(map(int,input().split()))
	
	if N>=16:
		return (1<<16)-1
		
	X=1<<16
	D=[0]*X; D[0]=1
	
	for a in A:
		E=D.copy()
		D=[0]*X
		for _ in range(16):
			for x in range(X):
				D[x|a]|=E[x]
			a=shift(a)
	
	return max([i for i in range(X) if D[i]])

print(solve())
0