結果

問題 No.2071 Shift and OR
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-09-16 21:32:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 198,308 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-23 14:29:18
合計ジャッジ時間 3,574 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
4,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
4,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
4,380 KB
testcase_12 WA -
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
4,376 KB
testcase_18 WA -
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 50 ms
4,376 KB
testcase_24 AC 6 ms
4,380 KB
testcase_25 AC 24 ms
4,376 KB
testcase_26 AC 29 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 54 ms
4,380 KB
testcase_29 AC 55 ms
4,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1 ms
4,376 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
    int N;
    cin >> N;
    int ans = 0;
    for (int i = 0; i < N; i ++) {
        int a;
        cin >> a;
        int kj = ans;
        for (int j =  0; j < 16; j ++) {
            ans = max(ans, kj | a);
            a = (a >> 1) | ((a & 1) << 15);
        }
    }
    cout << ans << endl;
}
0