結果

問題 No.2071 Shift and OR
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-01 14:33:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 82,956 KB
最終ジャッジ日時 2024-09-01 14:33:17
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,072 KB
testcase_01 AC 51 ms
65,820 KB
testcase_02 AC 58 ms
71,580 KB
testcase_03 AC 67 ms
76,420 KB
testcase_04 AC 60 ms
72,076 KB
testcase_05 AC 83 ms
81,800 KB
testcase_06 AC 65 ms
74,956 KB
testcase_07 AC 58 ms
71,348 KB
testcase_08 AC 60 ms
71,772 KB
testcase_09 AC 60 ms
73,132 KB
testcase_10 AC 62 ms
73,904 KB
testcase_11 AC 86 ms
82,244 KB
testcase_12 AC 86 ms
82,044 KB
testcase_13 AC 89 ms
81,412 KB
testcase_14 AC 40 ms
60,028 KB
testcase_15 AC 69 ms
77,540 KB
testcase_16 AC 71 ms
78,196 KB
testcase_17 AC 85 ms
81,996 KB
testcase_18 AC 51 ms
66,684 KB
testcase_19 AC 90 ms
82,412 KB
testcase_20 AC 84 ms
82,516 KB
testcase_21 AC 99 ms
82,956 KB
testcase_22 AC 90 ms
82,232 KB
testcase_23 AC 37 ms
52,348 KB
testcase_24 AC 37 ms
51,872 KB
testcase_25 AC 36 ms
52,316 KB
testcase_26 AC 37 ms
52,280 KB
testcase_27 AC 36 ms
53,976 KB
testcase_28 AC 37 ms
52,504 KB
testcase_29 AC 37 ms
53,372 KB
testcase_30 AC 67 ms
75,492 KB
testcase_31 AC 66 ms
73,804 KB
testcase_32 AC 62 ms
73,184 KB
testcase_33 AC 61 ms
72,524 KB
testcase_34 AC 62 ms
73,144 KB
testcase_35 AC 64 ms
74,428 KB
testcase_36 AC 70 ms
75,872 KB
testcase_37 AC 65 ms
74,852 KB
testcase_38 AC 65 ms
74,152 KB
testcase_39 AC 64 ms
73,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=1<<16
if n>=16:
  print(L-1)
  exit()
a=list(map(int,input().split()))
q=[0]*L
q[0]=1
for v in a:
  nq=[0]*L
  for i in range(L):
    if q[i]:
      u=v
      for j in range(16):
        nq[i|u]=1
        u=u//2+(1<<15)*(u%2)
  q=nq
print(max(i for i in range(L) if q[i]))
0