一道ACM问题(数论)

学习 时间:2026-04-06 21:18:09 阅读:5695
一道ACM问题(数论)Problem DescriptionDouBiXp has a girlfriend named DouBiNan.One day they felt very boring and decided to play some games.The rule of this game is as following.There are k balls on the desk.Every ball has a value and the value of ith (i=1,2,...,k) ball is 1^i+2^i+...+(p-1)^i (mod p).Number p is a prime number that is chosen by DouBiXp and his girlfriend.And then they take balls in turn and DouBiNan first.After all the balls are token,they compare the sum of values with the other ,and the person who get larger sum will win the game.You should print “YES” if DouBiNan will win the game.Otherwise you should print “NO”.InputMultiply Test Cases.In the first line there are two Integers k and p(1

最佳回答

俊逸的乌龟

诚心的犀牛

2026-04-06 21:18:09

#include <iostream>using namespace std;int main() {int k, p;while (cin >> k >> p) {if (k / (p - 1) % 2) {cout << "YES" << endl;}else {cout << "NO" << endl;}}} 思路当 i 是 p-1 的倍数的时候, 第i个小球的价值是p-1否则小球的价值是0 再问: 我知道这个结论,但是不知道为什么会这样,能否解释一下? 再答: http://blog。csdn。net/keshuai19940722/article/details/38050899

最新回答共有2条回答

  • 奋斗的小伙
    回复
    2026-04-06 21:18:09

    #include <iostream>using namespace std;int main() {int k, p;while (cin >> k >> p) {if (k / (p - 1) % 2) {cout << "YES" << endl;}else {cout << "NO" << endl;}}} 思路当 i 是 p-1 的倍数的时候, 第i个小球的价值是p-1否则小球的价值是0 再问: 我知道这个结论,但是不知道为什么会这样,能否解释一下? 再答: http://blog。csdn。net/keshuai19940722/article/details/38050899

上一篇 刚才是不是又地震啊?刚才晃了一下,是真的地震还是我的幻觉啊!害怕哦

下一篇 我英语大小作文都一塌糊涂怎么啊