QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#209022#4932. Moon and SunBeevoWA 95ms4476kbC++231.8kb2023-10-10 03:02:472023-10-10 03:02:47

Judging History

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

  • [2023-10-10 03:02:47]
  • 评测
  • 测评结果:WA
  • 用时:95ms
  • 内存:4476kb
  • [2023-10-10 03:02:47]
  • 提交

answer

#include <bits/stdc++.h>

#define el '\n'
#define Beevo ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

typedef long long ll;
typedef long double ld;

using namespace std;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

const int N = 1e5 + 5, M = 235813, MAX = 1e5;

int fact[N];

int add(int a, int b) {
    a = (a + M) % M;
    b = (b + M) % M;

    return (a + b) % M;
}

int mul(int a, int b) {
    a = (a + M) % M;
    b = (b + M) % M;

    return 1LL * a * b % M;
}

int modPow(int b, int p) {
    if (p == 0)
        return 1;

    int x = modPow(b, p / 2);

    return p % 2 == 0 ? mul(x, x) : mul(b, mul(x, x));
}

int modInvFer(int n) {
    return modPow(n, M - 2);
}

int ncr(int n, int r) {
    return mul(fact[n], mul(modInvFer(fact[r]), modInvFer(fact[n - r])));
}

void pre() {
    fact[0] = 1;

    for (int i = 1; i < N; i++)
        fact[i] = mul(fact[i - 1], i);
}

void testCase() {
    pre();

    int n;
    cin >> n;

    int sign = (n & 1 ? 1 : -1);

    int sum = 0, a[n];
    for (int i = 0; i < n; i++)
        cin >> a[i], sum = add(sum, mul(a[i], sign * ncr(n - 1, i))), sign *= -1;

    sign = (n & 1 ? 1 : -1);

    int cnt = 0;
    for (int i = 0; i < n; i++) {
        sum = add(sum, -mul(a[i], sign * ncr(n - 1, i)));

        int d = M - sum;
        int x = mul(d, modInvFer(sign * ncr(n - 1, i)));
        int y = mul(-sum, modInvFer(sign * ncr(n - 1, i))) - M;

        cnt += x <= MAX && x != a[i] || -y <= MAX && -y != a[i];

        sum = add(sum, mul(a[i], sign * ncr(n - 1, i)));

        sign *= -1;
    }

    cout << cnt;
}

signed main() {
    Beevo

    int t = 1;
//    cin >> t;

    while (t--)
        testCase();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 4120kb

input:

5
4 1 0 7 2

output:

3

result:

ok single line: '3'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

4
10 20 30 -40

output:

4

result:

ok single line: '4'

Test #3:

score: 0
Accepted
time: 1ms
memory: 4124kb

input:

2
100 100

output:

0

result:

ok single line: '0'

Test #4:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

16
19 43 69 21 72 9 70 -15 25 29 -23 -13 -41 79 -89 93

output:

14

result:

ok single line: '14'

Test #5:

score: 0
Accepted
time: 2ms
memory: 4196kb

input:

392
23531 -70064 22423 -55534 23391 -22700 88756 80526 36369 -10007 -28096 22617 -12591 80476 39531 -80144 -87955 93969 33358 30633 34132 -65817 -57922 -28367 -74214 50143 -36912 21570 -27256 -34989 14043 -92315 -12277 26859 97682 91797 -79591 30563 -58224 27016 -67737 99067 30626 16374 -49340 -1712...

output:

334

result:

ok single line: '334'

Test #6:

score: 0
Accepted
time: 2ms
memory: 4012kb

input:

292
-99191 -98152 -98063 -98047 -97715 -97353 -97211 -96714 -94868 -94586 -93910 -92928 -91078 -90877 -89315 -88925 -88630 -87392 -87209 -86028 -84609 -84095 -83780 -83406 -83315 -82724 -82079 -81548 -81481 -81308 -80690 -80431 -79941 -76493 -75868 -75033 -74227 -74117 -73703 -73586 -73502 -73306 -7...

output:

248

result:

ok single line: '248'

Test #7:

score: 0
Accepted
time: 2ms
memory: 3996kb

input:

309
98887 98493 98409 98076 97889 97105 96335 95922 95157 94858 94022 93801 93788 93600 93566 93431 92058 91804 90751 90382 90197 89866 89067 88948 88524 88049 87464 87356 85865 85383 85000 84838 84429 83352 81775 81241 80996 80303 79421 79359 79084 78979 78579 78311 77853 77615 77199 76350 75853 73...

output:

263

result:

ok single line: '263'

Test #8:

score: 0
Accepted
time: 1ms
memory: 4068kb

input:

107
-44185 93780 -58049 38184 -80116 15432 -76859 39059 -42043 34396 7818 89779 -22224 44835 -99460 29444 -54582 20083 -9025 94424 17752 92561 66770 82965 -96626 39301 -11864 62742 33462 37023 1965 29724 -94180 58174 -33205 83913 -80551 8495 -11590 98236 -23377 38796 3994 61340 -81823 -7796 -54447 6...

output:

88

result:

ok single line: '88'

Test #9:

score: 0
Accepted
time: 42ms
memory: 4300kb

input:

43417
-88011 3526 -87784 -5063 81553 -63127 47982 -13045 79619 -62489 34521 43047 5792 4605 -39109 -35885 99600 -99381 -27560 19465 -5867 29820 -24349 -98963 95913 94051 -65067 32778 -34400 -41369 36075 -59926 -87358 85147 21454 -38148 -4467 -19354 -43198 26617 -52316 78137 2906 -13476 -26412 85650 ...

output:

36822

result:

ok single line: '36822'

Test #10:

score: 0
Accepted
time: 82ms
memory: 4476kb

input:

90838
-89537 65011 22520 -7843 8633 -56201 -11753 -61717 -21438 27748 -2513 -537 75559 11717 19211 72302 52392 90298 44251 81002 -43966 -52133 -96725 -16064 -2814 13471 10229 -2230 13631 -48825 23208 -50077 70706 -44059 -54640 13408 9308 11392 1294 45011 98620 -52030 -96925 86174 -27533 -57566 -7870...

output:

76911

result:

ok single line: '76911'

Test #11:

score: 0
Accepted
time: 43ms
memory: 4320kb

input:

44994
-72728 -84149 715 -72757 -63184 65252 248 -26899 -61524 -32934 69222 -87290 11716 -44300 -32029 -89748 -91620 34038 488 -1404 -39640 78030 149 73272 56552 74365 -17748 -86455 79671 -89249 -32298 -71778 -46249 29495 -88982 -44163 -22883 -52013 -17137 -91156 29037 73521 -97656 -43895 -50704 3465...

output:

38250

result:

ok single line: '38250'

Test #12:

score: 0
Accepted
time: 17ms
memory: 4212kb

input:

16942
69607 -32741 -90994 -85656 7263 71160 -77525 -27855 -89319 -23418 15103 -48641 -3483 -7983 66210 -47519 -23372 72744 86506 -90670 88640 6659 19177 46053 90112 -97538 -47290 19944 9270 -17233 -60434 32328 -95953 -7320 14762 91692 62164 30763 -11861 30320 72857 87290 -48830 66581 -49365 39438 -5...

output:

14384

result:

ok single line: '14384'

Test #13:

score: 0
Accepted
time: 89ms
memory: 4372kb

input:

93792
-51282 -78078 -98161 -33038 70567 74121 47320 69018 -84409 87532 84776 -84807 94122 12286 -15869 91012 33365 9301 -29464 98094 -69170 31301 12816 83996 -41815 -24100 -9963 -66423 97029 -28805 -76234 53572 4649 72153 -88090 17261 88412 -18087 -12552 -96910 96516 -27382 79692 46837 -20148 60526 ...

output:

79530

result:

ok single line: '79530'

Test #14:

score: -100
Wrong Answer
time: 95ms
memory: 4392kb

input:

100000
77271 -81218 98233 -32336 -96866 -29427 47854 -480 -82709 11310 -45867 -6084 61754 63418 84189 25888 4218 -74264 8692 -61738 95171 58183 36976 60432 -67103 16980 30074 -58774 -1926 -70432 35912 18623 71986 -40125 28523 -1117 -75694 -7357 -54495 -21325 -46743 -58620 2829 21697 49942 94778 8105...

output:

50138

result:

wrong answer 1st lines differ - expected: '0', found: '50138'