結果

問題 No.1742 Binary Indexed Train
ユーザー monnumonnu
提出日時 2021-11-12 22:53:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 581 bytes
コンパイル時間 3,337 ms
コンパイル使用メモリ 228,344 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-25 20:47:07
合計ジャッジ時間 68,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
10,148 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 201 ms
13,764 KB
testcase_07 AC 193 ms
10,016 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 490 ms
12,192 KB
testcase_16 AC 906 ms
6,820 KB
testcase_17 AC 909 ms
6,816 KB
testcase_18 AC 1,153 ms
6,816 KB
testcase_19 AC 272 ms
6,820 KB
testcase_20 AC 26 ms
6,820 KB
testcase_21 AC 487 ms
6,816 KB
testcase_22 AC 1,300 ms
6,816 KB
testcase_23 AC 160 ms
6,816 KB
testcase_24 AC 58 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 372 ms
5,248 KB
testcase_27 AC 2,335 ms
5,248 KB
testcase_28 AC 74 ms
5,248 KB
testcase_29 AC 1,818 ms
5,248 KB
testcase_30 AC 1,433 ms
5,248 KB
testcase_31 TLE -
testcase_32 AC 1,421 ms
5,248 KB
testcase_33 AC 492 ms
5,248 KB
testcase_34 AC 2,738 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,ll>>>;
#define INF 1000000000
#define MOD 998244353
#define MAX 300000

int main(){
  int N,Q;
  cin>>N>>Q;
  for(int q=0;q<Q;q++){
    ll S,T;
    cin>>S>>T;
    int ans=0;
    for(int cnt=0;cnt<2*N+10;cnt++){
      for(int i=N;i>=0;i--){
        if(S%(1LL<<i)!=0){
          continue;
        }
        if(S+(1LL<<i)<=T){
          S+=(1LL<<i);
          ans++;
          break;
        }
      }
    }
    cout<<ans<<'\n';
  }
}
0