# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19244 | kaTkaHr | Σ (kriii4_P2) | C++14 | 742 ms | 1160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
#include <map>
using namespace std;
typedef long long ll;
const int MX = 10005, MM = 1000000007;
ll pw(ll A, ll B){
ll R = 1;
while(B){
if( B & 1 ) R = R * A % MM;
A = A * A % MM; B /= 2;
}
return R;
}
ll rv(ll A){ return pw(A, MM-2); }
int N[MX], S[MX];
int main()
{
int M;
scanf("%d", &M);
for(int i = 1; i <= M; i++){
scanf("%d%d", N+i, S+i);
}
ll ans = 0;
for(int i = 1; i <= M; i++){
ll t = 1;
for(int j = 1; j <= M; j++){
if(i == j) t = t * S[j] % MM;
else t = t * N[j] % MM;
}
ans = (ans + t) % MM;
}
for(int i = 1; i <= M; i++){
ans = ans * rv(N[i]) % MM;
}
printf("%lld\n", ans);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |