結果

問題 No.2300 Substring OR Sum
ユーザー yorry2101yorry2101
提出日時 2023-05-12 22:52:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 460 bytes
コンパイル時間 933 ms
コンパイル使用メモリ 73,244 KB
実行使用メモリ 10,912 KB
最終ジャッジ日時 2024-05-06 12:55:24
合計ジャッジ時間 8,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,344 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1,289 ms
5,376 KB
testcase_04 AC 892 ms
5,376 KB
testcase_05 AC 1,411 ms
5,376 KB
testcase_06 AC 372 ms
5,376 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:17:23: warning: 'bwor' may be used uninitialized [-Wmaybe-uninitialized]
   17 |             else bwor = bwor | a[j];
main.cpp:11:9: note: 'bwor' was declared here
   11 |     int bwor;
      |         ^~~~

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(void){
    int n;
    cin >> n;
    vector<int> a(n);
    long long sum = 0;
    for (int i = 0; i < n; i++) cin >> a[i];
    
    int bwor;
    for (int i = 0; i < n; i++) {
        for (int j = i; j < n; j++) {
            if (j==i) {
                bwor = a[i] | a[j];
            }
            else bwor = bwor | a[j];
            sum += bwor;
        }
    }
    cout << sum << endl;
}
0