Source Code
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define EPS 1e-6
#define Ceil(n, m) ((n / m) + ( n % m ? 1 : 0))
#define mod 1000000007
#define over 1e18
#define cin(v) for(auto &i: v)  cin>>i
#define cout(v) for(auto &i: v) cout<<i<<" ";
#define all(v) v.begin(), v.end()
#define LSB(n) (n & -n)
#define OO 2'000'000'000
void fcode(){
    ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
   /* #ifndef ONLINE_JUDGE
      freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout) ,  freopen("error.txt", "w", stderr);
    #endif*/
}
 
int main(){
    fcode();
    string s;    cin>>s;
    vector<ll>pre(s.size()+1);
    for(int i = 0; i<s.size(); i++){
      if(s[i] == '1')
        pre[i+1] = (pre[i]* 2)+ 1;
      else 
        pre[i+1] = pre[i] * 2;
    }
    ll q;    cin>>q;
    while(q--){
      ll l, r;    cin>>l>>r;
      cout<<pre[r] % 10<<"\n";
    }
  // cout(pre);
}
Copy
Binarithm Hodakamal
GNU G++17
69 ms
2.7 MB
Wrong Answer