Task: | Kertotaulu |
Sender: | Henrik Lievonen |
Submission time: | 2015-08-15 18:18:06 +0300 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 26 |
#2 | ACCEPTED | 23 |
#3 | ACCEPTED | 51 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.05 s | 1 | details |
#2 | ACCEPTED | 0.06 s | 1 | details |
#3 | ACCEPTED | 0.06 s | 1 | details |
#4 | ACCEPTED | 0.06 s | 1 | details |
#5 | ACCEPTED | 0.06 s | 1 | details |
#6 | ACCEPTED | 0.06 s | 2 | details |
#7 | ACCEPTED | 0.07 s | 2 | details |
#8 | ACCEPTED | 0.05 s | 2 | details |
#9 | ACCEPTED | 0.06 s | 2 | details |
#10 | ACCEPTED | 0.06 s | 2 | details |
#11 | ACCEPTED | 0.06 s | 3 | details |
#12 | ACCEPTED | 0.06 s | 3 | details |
#13 | ACCEPTED | 0.07 s | 3 | details |
#14 | ACCEPTED | 0.06 s | 3 | details |
#15 | ACCEPTED | 0.06 s | 3 | details |
Code
#include <iostream> using namespace std; typedef long long int ll; const ll mod = 1000000007; ll modadd(ll a, ll b) { return (a + b) % mod; } ll modsub(ll a, ll b) { return ((a - b) % mod + mod) % mod; } ll modmul(ll a, ll b) { return (a*b) % mod; } ll modpow(ll b, ll e) { if (e == 0) return 1; if (e == 1) return b; if (e % 2 == 0) { ll p = modpow(b, e / 2); return modmul(p, p); } return modmul(modpow(b, e / 2), modpow(b, e / 2 + 1)); } ll modinv(ll a) { return modpow(a, mod - 2); } ll moddiv(ll a, ll b) { return modmul(a, modinv(b)); } ll pointsum(ll a, ll b) { if (a <= 0 || b <= 0) return 0; a = moddiv(modmul(a, a + 1), 2); b = moddiv(modmul(b, b + 1), 2); return modmul(a, b); } ll areasum(ll a, ll b, ll c, ll d) { return modsub(modadd(pointsum(c, d), pointsum(a - 1, b - 1)), modadd(pointsum(c, b - 1), pointsum(a - 1, d))); } int main() { ll a, b, c, d; cin >> a >> b >> c >> d; cout << areasum(a, b, c, d); }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
242 232 976 976 |
correct output |
---|
417796293 |
user output |
---|
417796293 |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
12 645 476 899 |
correct output |
---|
335735446 |
user output |
---|
335735446 |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
435 460 792 681 |
correct output |
---|
816738894 |
user output |
---|
816738894 |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
318 389 441 799 |
correct output |
---|
488457695 |
user output |
---|
488457695 |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
211 640 623 951 |
correct output |
---|
744563022 |
user output |
---|
744563022 |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
201976 387454 920309 673120 |
correct output |
---|
946933548 |
user output |
---|
946933548 |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
779381 684472 984138 828099 |
correct output |
---|
121907300 |
user output |
---|
121907300 |
Test 8
Group: 2
Verdict: ACCEPTED
input |
---|
284954 437564 777701 638386 |
correct output |
---|
321734745 |
user output |
---|
321734745 |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
296035 308490 853604 668978 |
correct output |
---|
802693678 |
user output |
---|
802693678 |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
460731 148462 619190 626173 |
correct output |
---|
264761756 |
user output |
---|
264761756 |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
381626897 590403175 501559980 ... |
correct output |
---|
258247883 |
user output |
---|
258247883 |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
597399975 685346584 618318138 ... |
correct output |
---|
390332938 |
user output |
---|
390332938 |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
247307039 323856912 812562646 ... |
correct output |
---|
89821592 |
user output |
---|
89821592 |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
900181910 768404361 943052600 ... |
correct output |
---|
242545884 |
user output |
---|
242545884 |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
815 528 999999994 999999992 |
correct output |
---|
103780099 |
user output |
---|
103780099 |