QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623999 | #5301. Modulo Ruins the Legend | 2317663977 | TL | 7ms | 3656kb | C++23 | 1.2kb | 2024-10-09 14:38:14 | 2024-10-09 14:38:15 |
Judging History
answer
#include <iostream>
using namespace std;
#include <vector>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <cmath>
#include <cstring>
using ll = long long;
const int N = 1e5 + 10;
ll n, m;
ll sum;
ll exgcd(ll a, ll b, ll& x, ll& y)
{
if (!b)
{
x = 1;
y = 0;
return a;
}
int d = exgcd(b, a % b, y, x);
y -= a / b * x;
return d;
}
ll gcd(ll a, ll b)
{
if (a < b) swap(a, b);
return b ? gcd(b, a % b) : a;
}
void solve()
{
cin >> n >> m;
for (int i = 1;i <= n;i++)
{
ll t;
cin >> t;
sum += t;
}
ll y = 0, s = 0;
ll ans1 = sum % gcd(n, m);
ll ans2 = (sum + n * (n + 1) / 2) % gcd(n, m);
if (ans1 <= ans2)
{
cout << ans1 << '\n';
ll d = exgcd(m, n, y, s);
s = -s;
s *= (sum - ans1) / gcd(n, m);
while (s < 0) s += m / gcd(m, n);
cout << s % m << ' ' << 0 << '\n';
}
else
{
cout << ans2 << '\n';
ll d = exgcd(m, n, y, s);
s = -s;
s *= (sum + n * (n + 1) / 2 - ans2) / gcd(n, m);
while (s < 0) s += m / gcd(m, n);
cout << s % m << ' ' << 1 << '\n';
}
}
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int T = 1;
//cin >> T;
while (T--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3652kb
input:
6 24 1 1 4 5 1 4
output:
1 2 1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
7 29 1 9 1 9 8 1 0
output:
0 0 0
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
1 1 0
output:
0 0 0
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
1 1000000000 963837005
output:
0 36162995 0
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
2 1 0 0
output:
0 0 0
result:
ok ok
Test #6:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
2 1000000000 948507269 461613424
output:
0 294939652 1
result:
ok ok
Test #7:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
100000 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
output:
0 0 0
result:
ok ok
Test #8:
score: 0
Accepted
time: 7ms
memory: 3652kb
input:
100000 1000000000 253614966 278270960 980235895 498158918 928430170 216003119 852570558 948400590 239257296 897053667 294741176 38297441 382677590 406314557 609468973 854148232 314532767 738191551 158215002 5865825 920471826 380037058 356271728 749175327 28319049 208101105 953758995 896570758 521930...
output:
46613 4640 1
result:
ok ok
Test #9:
score: -100
Time Limit Exceeded
input:
100000 998244353 561002596 498658036 721339539 63377827 532179242 934651519 234198881 490149304 2056307 499913682 427679408 694677560 516580968 300129454 816286800 688594301 183049581 456627420 495848352 273497462 953217060 796225499 207179832 728054671 409492082 25003432 810431468 206421553 5569626...