QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#717592#5301. Modulo Ruins the Legendlllei#WA 6ms3704kbC++201.4kb2024-11-06 18:26:212024-11-06 18:26:22

Judging History

你现在查看的是最新测评结果

  • [2024-11-06 18:26:22]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:3704kb
  • [2024-11-06 18:26:21]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using LL = long long;

template<typename T>
T exgcd(T a, T b, T &x, T &y){
    if (!b){
        x = 1, y = 0;
        return a;
    }
    T r = exgcd(b, a % b, y, x);
    y -= a / b * x;
    return r;
}

// a * x = b (mod m) or b / a (mod m)
array<LL, 2> modequ(LL a, LL b, LL m){
    LL x, y;
    LL g = exgcd(a, m, x, y);
    if (b % g) return {-1, -1};
    m /= g, a /= g, b /= g;
    x = 1LL * x * b % m;
    if (x < 0) x += m;
    return {x, m};
}

// a * x + b * y = c
array<LL, 4> modequ1(LL a, LL b, LL c){
    LL x, y;
    LL d = exgcd(a, b, x, y);

    if (c % d)  {
        return {-1, -1, -1, -1};
    }

    x *= c / d, y *= c / d;

    LL k1 = b / d, k2 = a / d;

    LL t1 = x / k1;

    x -= t1 * k1;

    y += t1 * k2;

    if (x < 0) {
        x += k1;
        y -= k2;
    }

    return {x, y, k1, k2};
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    LL n, m;
    cin >> n >> m;

    LL tot = 0;
    for (int i = 0; i < n; ++i) {
        int a;
        cin >> a;
        tot += a;
    }
    LL M = gcd(n * (n + 1) / 2, gcd(n, m));
    LL ans = tot % M;

    auto [x, y, k1, k2] = modequ1(n, n * (n + 1) / 2, ((ans - tot) % m + m) % m);     
    cout << ans << '\n';
    y %= m;
    if (y < 0) {
        y += m;
    }
    cout << x << ' ' << y << '\n';
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3604kb

input:

6 24
1 1 4 5 1 4

output:

1
5 23

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3624kb

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: 3620kb

input:

1 1
0

output:

0
0 0

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3572kb

input:

1 1000000000
963837005

output:

0
0 36162995

result:

ok ok

Test #5:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

2 1
0 0

output:

0
0 0

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3620kb

input:

2 1000000000
948507269 461613424

output:

0
1 196626435

result:

ok ok

Test #7:

score: 0
Accepted
time: 3ms
memory: 3632kb

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: 6ms
memory: 3600kb

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
54641 999999999

result:

ok ok

Test #9:

score: -100
Wrong Answer
time: 6ms
memory: 3704kb

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...

output:

0
-1 998244352

result:

wrong answer Integer parameter [name=s] equals to -1, violates the range [0, 998244352]