結果
問題 | No.2071 Shift and OR |
ユーザー | ikoma |
提出日時 | 2022-09-16 22:24:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 471 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,700 KB |
実行使用メモリ | 122,412 KB |
最終ジャッジ日時 | 2024-06-01 13:29:56 |
合計ジャッジ時間 | 5,221 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
69,400 KB |
testcase_01 | AC | 53 ms
63,428 KB |
testcase_02 | AC | 49 ms
63,744 KB |
testcase_03 | AC | 50 ms
65,412 KB |
testcase_04 | AC | 49 ms
64,420 KB |
testcase_05 | AC | 51 ms
65,216 KB |
testcase_06 | AC | 52 ms
65,748 KB |
testcase_07 | WA | - |
testcase_08 | AC | 50 ms
63,528 KB |
testcase_09 | AC | 52 ms
65,008 KB |
testcase_10 | WA | - |
testcase_11 | AC | 51 ms
64,532 KB |
testcase_12 | WA | - |
testcase_13 | AC | 52 ms
65,284 KB |
testcase_14 | AC | 44 ms
60,324 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 52 ms
65,096 KB |
testcase_18 | AC | 52 ms
66,296 KB |
testcase_19 | AC | 52 ms
65,608 KB |
testcase_20 | AC | 52 ms
65,672 KB |
testcase_21 | AC | 53 ms
65,500 KB |
testcase_22 | AC | 52 ms
65,188 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
N=int(input()) A=list(map(int,input().split())) def shift(x): return (x>>1) + (1<<15) * (x&1) dp = [[0]*16 for _ in range(N+1)] for i in range(N): a = A[i] for j in range(16): for k in range(16): x = dp[i][k] xx = x | a for _ in range(16): x = shift(x) if xx<x|a: xx = x|a dp[i+1][j] = max(dp[i+1][j], xx) a = shift(a) print(max(dp[-1]))