# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
21287 | gs12117 | 제비 (kriii4_W) | C++11 | 0 ms | 1116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<cstdio>
const int mod = 1000000007;
long long int mpow(int x, int y) {
if (y == 0)return 1;
long long int r = mpow(x, y / 2);
r *= r;
r %= mod;
if (y % 2) {
r *= x;
r %= mod;
}
return r;
}
long long int inv(int x) {
return mpow(x, mod - 2);
}
int main() {
int tcn;
scanf("%d", &tcn);
while (tcn--) {
int a, b, c, d;
scanf("%d%d%d%d", &a, &b, &c, &d);
long long int ans = d;
ans += b*inv(c) % mod*d%mod;
ans += a;
ans += mod;
ans -= a*mpow(c*inv(c + 1) % mod, d) % mod;
ans %= mod;
printf("%lld\n", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |