#include <bits/stdc++.h>
#include<bits/extc++.h>
using namespace __gnu_pbds;
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define nline "\n"
#define pb push_back
#define mp make_pair
#define all(a) (a).begin(),(a).end()
#define ff first
#define ss second
#define repv(i, m) for(auto (i) = (m).begin();(i) != (m).end();(i)++)
#define FileIO freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout);
#define IOS ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
string to_string(char x) { return (string) "\'" + x + "\'"; }
string to_string(const string &x) { return '\"' + x + '\"'; }
string to_string(const char *x) { return to_string((string) x); }
string to_string(bool x) { return x ? "true" : "false"; }
template<typename T, typename V>
string to_string(const pair<T, V> &x) { return '(' + to_string(x.first) + ',' + to_string(x.second) + ')'; }
template<typename T>
string to_string(const T &x) {
int f = 0;
string r;
for (auto &i: x) r += (f++ ? "," : "") + to_string(i);
return '{' + r + '}';
}
void _print() { cerr << "]\n"; }
template<typename T, typename... V>
void _print(T t, V... v) {
cerr << to_string(t);
if (sizeof...(v)) cerr << ", ";
_print(v...);
}
template<typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#ifndef ONLINE_JUDGE
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(...)
#endif
const long long INFL = 4000000000000000000LL;
const int INF = 2047483647;
const long long mod = 1000000007LL;
/********************************************* this is boring *********************************************/
void solve(int tc) {
string s;
int x;
cin >> x >> s;
int len = s.length();
ll n = len;
int l = 0;
while(n<x){
l++;
string c = s.substr(l);
int cnt = s[l-1] - '0' - 1;
while(n<x && cnt--){
s += c;
n += c.length();
}
}
n = len;
for(int i=0;i<x;i++){
ll cnt = s[i]-'0'-1;
ll right = n - (i+1);
right = (right + mod)%mod;
n += (cnt*right)%mod;
n %= mod;
}
cout << n << endl;
}
int main() {
//#ifndef ONLINE_JUDGE
// FileIO
//#endif
IOS
cout << setprecision(15) << fixed;
int tc = 1;
cin >> tc;
for (int t = 1; t <= tc; t++) solve(t);
// cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s\n";
}
394. Decode String | 902. Numbers At Most N Given Digit Set |
221. Maximal Square | 1200. Minimum Absolute Difference |
1619B - Squares and Cubes | 1619A - Square String |
1629B - GCD Arrays | 1629A - Download More RAM |
1629C - Meximum Array | 1629D - Peculiar Movie Preferences |
1629E - Grid Xor | 1629F1 - Game on Sum (Easy Version) |
2148. Count Elements With Strictly Smaller and Greater Elements | 2149. Rearrange Array Elements by Sign |
2150. Find All Lonely Numbers in the Array | 2151. Maximum Good People Based on Statements |
2144. Minimum Cost of Buying Candies With Discount | Non empty subsets |
1630A - And Matching | 1630B - Range and Partition |
1630C - Paint the Middle | 1630D - Flipping Range |
1328A - Divisibility Problem | 339A - Helpful Maths |
4A - Watermelon | 476A - Dreamoon and Stairs |
1409A - Yet Another Two Integers Problem | 977A - Wrong Subtraction |
263A - Beautiful Matrix | 180C - Letter |