Submission #19347

#TimeUsernameProblemLanguageResultExecution timeMemory
19347algoshipdaΣ (kriii4_P2)C++14
0 / 100
29 ms1716 KiB
#include <bits/stdc++.h>
using namespace std;
typedef long long lld;
const int MOD = 1e9 + 7;

int fpow(int n, int k)
{
	if(k == 0) return 1;
	if(k % 2){
		return 1ll * n * fpow(n, k - 1) % MOD;
	}
	int h = fpow(n, k / 2);
	return 1ll * h * h % MOD;
}
int main()
{
	int t;
	cin >> t;
	while(t--){
		int n, k;
		cin >> k >> n;
		cout << (1ll * n * fpow(k, MOD - 2) % MOD) << '\n';
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...