結果

問題 No.1742 Binary Indexed Train
ユーザー t98slidert98slider
提出日時 2021-11-13 09:16:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 277 ms / 3,000 ms
コード長 359 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 166,140 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 21:43:52
合計ジャッジ時間 9,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 225 ms
6,816 KB
testcase_04 AC 228 ms
6,816 KB
testcase_05 AC 229 ms
6,824 KB
testcase_06 AC 166 ms
6,816 KB
testcase_07 AC 164 ms
6,820 KB
testcase_08 AC 273 ms
6,816 KB
testcase_09 AC 272 ms
6,820 KB
testcase_10 AC 277 ms
6,820 KB
testcase_11 AC 275 ms
6,816 KB
testcase_12 AC 272 ms
6,820 KB
testcase_13 AC 216 ms
6,816 KB
testcase_14 AC 222 ms
6,820 KB
testcase_15 AC 60 ms
6,820 KB
testcase_16 AC 42 ms
6,820 KB
testcase_17 AC 190 ms
6,816 KB
testcase_18 AC 180 ms
6,816 KB
testcase_19 AC 102 ms
6,820 KB
testcase_20 AC 9 ms
6,820 KB
testcase_21 AC 68 ms
6,820 KB
testcase_22 AC 195 ms
6,816 KB
testcase_23 AC 14 ms
6,816 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 143 ms
6,816 KB
testcase_26 AC 112 ms
6,820 KB
testcase_27 AC 128 ms
6,816 KB
testcase_28 AC 19 ms
6,820 KB
testcase_29 AC 187 ms
6,820 KB
testcase_30 AC 78 ms
6,816 KB
testcase_31 AC 216 ms
6,820 KB
testcase_32 AC 75 ms
6,816 KB
testcase_33 AC 27 ms
6,816 KB
testcase_34 AC 138 ms
6,816 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