最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

CodeforcesBetaRound#75(Div.2)-A.Chips_html/css

来源:动视网 责编:小采 时间:2020-11-27 15:57:29
文档

CodeforcesBetaRound#75(Div.2)-A.Chips_html/css

CodeforcesBetaRound#75(Div.2)-A.Chips_html/css_WEB-ITnose:Chips time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus n
推荐度:
导读CodeforcesBetaRound#75(Div.2)-A.Chips_html/css_WEB-ITnose:Chips time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus n


Chips

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus number 2 sits to the left of the walrus number 1, the walrus number 3 sits to the left of the walrus number 2, ..., the walrus number 1 sits to the left of the walrus number n.

The presenter has m chips. The presenter stands in the middle of the circle and starts giving the chips to the walruses starting from walrus number 1 and moving clockwise. The walrus number i gets i chips. If the presenter can't give the current walrus the required number of chips, then the presenter takes the remaining chips and the process ends. Determine by the given n and m how many chips the presenter will get in the end.

Input

The first line contains two integers n and m (1?≤?n?≤?50, 1?≤?m?≤?104) ? the number of walruses and the number of chips correspondingly.

Output

Print the number of chips the presenter ended up with.

Sample test(s)

input

4 11

output

input

17 107

output

input

3 8

output

Note

In the first sample the presenter gives one chip to the walrus number 1, two chips to the walrus number 2, three chips to the walrus number 3, four chips to the walrus number 4, then again one chip to the walrus number 1. After that the presenter runs out of chips. He can't give anything to the walrus number 2 and the process finishes.

In the third sample the presenter gives one chip to the walrus number 1, two chips to the walrus number 2, three chips to the walrus number 3, then again one chip to the walrus number 1. The presenter has one chip left and he can't give two chips to the walrus number2, that's why the presenter takes the last chip.







解题思路:有1~n依次循环相连,即1 -> 2 -> ... -> n-1 -> n -> 1.现有数m,从依次从1的位置开始,如果m >= 1,则m -= 1.依次i循环移动,直到m < i时,输出m即可。直接判断一下当i是n的倍数时,i = n;否则i = i%n即可。




AC代码:

#include #include #include #include #include #include #include #include #include #include #include #include using namespace std;#define INF 0x7fffffffint main(){ #ifdef sxk freopen("in.txt","r",stdin); #endif int n, m; while(scanf("%d%d", &n, &m)!=EOF) { for(int i=1; ; i++){ if(i%n != 0) i %= n; else i = n; if(m < i){ printf("%d\n", m); break; } m -= i; } } return 0;}

文档

CodeforcesBetaRound#75(Div.2)-A.Chips_html/css

CodeforcesBetaRound#75(Div.2)-A.Chips_html/css_WEB-ITnose:Chips time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus n
推荐度:
标签: html css Codeforces
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top