QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#544271#9167. Coprime Arraygzchenben#AC ✓0ms3948kbC++14938b2024-09-02 14:19:452024-09-02 14:19:46

Judging History

你现在查看的是测评时间为 2024-09-02 14:19:46 的历史记录

  • [2024-10-14 07:52:41]
  • 管理员手动重测本题所有获得100分的提交记录
  • 测评结果:AC
  • 用时:0ms
  • 内存:3960kb
  • [2024-09-02 14:19:46]
  • 评测
  • 测评结果:100
  • 用时:0ms
  • 内存:3948kb
  • [2024-09-02 14:19:45]
  • 提交

answer

#include<cstdio>
#include<algorithm>
#include<cmath>
#include<vector>
using namespace std;

int gcd(int x, int y) {
    x = abs(x), y = abs(y);
    if (x < y) swap(x, y);
    if (y == 0) return x;
    return gcd(y, x % y);
}

int sum, n;
vector<int> ans;
int main() {
    scanf("%d%d", &sum, &n);

    if (gcd(sum, n) == 1) {
        printf("1\n%d\n", sum);
        return 0;
    }

    if (n % 2 == 0 && sum % 2 == 1) {
        for (int i = 1;;i++) {
            if (gcd(i, n) == 1) {
                ans.push_back(i);
                sum -= i;
                break;
            }
        }
    }

    for (int i = 1;;i++) {
        if (gcd(i, n) == 1 && gcd(sum - i, n) == 1) {
            ans.push_back(i);
            ans.push_back(sum - i);
            break;
        }
    }

    printf("%d\n", ans.size());
    for (auto& p : ans) {
        printf("%d ", p);
    }
    printf("\n");
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

9 6

output:

3
1 1 7 

result:

ok Correct

Test #2:

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

input:

14 34

output:

2
1 13 

result:

ok Correct

Test #3:

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

input:

1000000000 223092870

output:

2
29 999999971 

result:

ok Correct

Test #4:

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

input:

2 1000000000

output:

2
1 1 

result:

ok Correct

Test #5:

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

input:

649557664 933437700

output:

2
11 649557653 

result:

ok Correct

Test #6:

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

input:

33396678 777360870

output:

2
1 33396677 

result:

ok Correct

Test #7:

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

input:

48205845 903124530

output:

3
1 31 48205813 

result:

ok Correct

Test #8:

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

input:

251037078 505905400

output:

2
1 251037077 

result:

ok Correct

Test #9:

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

input:

30022920 172746860

output:

2
1 30022919 

result:

ok Correct

Test #10:

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

input:

63639298 808058790

output:

2
29 63639269 

result:

ok Correct

Test #11:

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

input:

76579017 362768406

output:

3
1 1 76579015 

result:

ok Correct

Test #12:

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

input:

40423669 121437778

output:

3
1 1 40423667 

result:

ok Correct

Test #13:

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

input:

449277309 720915195

output:

2
1 449277308 

result:

ok Correct

Test #14:

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

input:

81665969 919836918

output:

3
1 5 81665963 

result:

ok Correct

Test #15:

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

input:

470578680 280387800

output:

2
1 470578679 

result:

ok Correct

Test #16:

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

input:

58450340 803305503

output:

2
1 58450339 

result:

ok Correct

Test #17:

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

input:

125896113 323676210

output:

3
1 31 125896081 

result:

ok Correct

Test #18:

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

input:

381905348 434752500

output:

2
1 381905347 

result:

ok Correct

Test #19:

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

input:

78916498 653897673

output:

1
78916498

result:

ok Correct

Test #20:

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

input:

35787885 270845190

output:

3
1 1 35787883 

result:

ok Correct

Extra Test:

score: 0
Extra Test Passed