結果

問題 No.1742 Binary Indexed Train
ユーザー t98slidert98slider
提出日時 2021-11-13 09:16:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 3,000 ms
コード長 359 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 165,428 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 04:09:46
合計ジャッジ時間 8,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 223 ms
5,376 KB
testcase_04 AC 228 ms
5,376 KB
testcase_05 AC 229 ms
5,376 KB
testcase_06 AC 165 ms
5,376 KB
testcase_07 AC 162 ms
5,376 KB
testcase_08 AC 277 ms
5,376 KB
testcase_09 AC 276 ms
5,376 KB
testcase_10 AC 276 ms
5,376 KB
testcase_11 AC 275 ms
5,376 KB
testcase_12 AC 273 ms
5,376 KB
testcase_13 AC 221 ms
5,376 KB
testcase_14 AC 224 ms
5,376 KB
testcase_15 AC 60 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 188 ms
5,376 KB
testcase_18 AC 179 ms
5,376 KB
testcase_19 AC 102 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 68 ms
5,376 KB
testcase_22 AC 195 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 145 ms
5,376 KB
testcase_26 AC 114 ms
5,376 KB
testcase_27 AC 128 ms
5,376 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 191 ms
5,376 KB
testcase_30 AC 78 ms
5,376 KB
testcase_31 AC 216 ms
5,376 KB
testcase_32 AC 76 ms
5,376 KB
testcase_33 AC 27 ms
5,376 KB
testcase_34 AC 140 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:16:69: warning: 'msb' may be used uninitialized [-Wmaybe-uninitialized]
   16 |         cout<<__builtin_popcountll(msb-s%msb)+__builtin_popcountll(t%msb)<<'\n';
      |                                                                    ~^~~~
main.cpp:7:14: note: 'msb' was declared here
    7 |     long s,t,msb;
      |              ^~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n,q;
    cin>>n>>q;
    long s,t,msb;
    while(q--){
        cin>>s>>t;
        for(int i=n;i>=0;i--){
            if((s^t)>>i){
                msb=1LL<<i;
                break;
            }
        }
        cout<<__builtin_popcountll(msb-s%msb)+__builtin_popcountll(t%msb)<<'\n';
    }
}
0