一道ACM问题(数论)
一道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
最佳回答
#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
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
