結果

問題 No.1742 Binary Indexed Train
ユーザー t98slidert98slider
提出日時 2021-11-13 09:10:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 252 ms / 3,000 ms
コード長 365 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 165,456 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 21:27:24
合計ジャッジ時間 8,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 207 ms
5,248 KB
testcase_04 AC 208 ms
5,248 KB
testcase_05 AC 205 ms
5,248 KB
testcase_06 AC 151 ms
5,248 KB
testcase_07 AC 147 ms
5,248 KB
testcase_08 AC 245 ms
5,248 KB
testcase_09 AC 245 ms
5,248 KB
testcase_10 AC 252 ms
5,248 KB
testcase_11 AC 245 ms
5,248 KB
testcase_12 AC 246 ms
5,248 KB
testcase_13 AC 199 ms
5,248 KB
testcase_14 AC 205 ms
5,248 KB
testcase_15 AC 53 ms
5,248 KB
testcase_16 AC 38 ms
5,248 KB
testcase_17 AC 171 ms
5,248 KB
testcase_18 AC 166 ms
5,248 KB
testcase_19 AC 95 ms
5,248 KB
testcase_20 AC 9 ms
5,248 KB
testcase_21 AC 62 ms
5,248 KB
testcase_22 AC 177 ms
5,248 KB
testcase_23 AC 13 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 132 ms
5,248 KB
testcase_26 AC 104 ms
5,248 KB
testcase_27 AC 121 ms
5,248 KB
testcase_28 AC 18 ms
5,248 KB
testcase_29 AC 173 ms
5,248 KB
testcase_30 AC 69 ms
5,248 KB
testcase_31 AC 201 ms
5,248 KB
testcase_32 AC 68 ms
5,248 KB
testcase_33 AC 25 ms
5,248 KB
testcase_34 AC 128 ms
5,248 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>>i)!=(t>>i)){
                msb=1LL<<i;
                break;
            }
        }
        cout<<__builtin_popcountll(msb-s%msb)+__builtin_popcountll(t%msb)<<'\n';
    }
}
0