多多色-多人伦交性欧美在线观看-多人伦精品一区二区三区视频-多色视频-免费黄色视屏网站-免费黄色在线

國內(nèi)最全IT社區(qū)平臺 聯(lián)系我們 | 收藏本站
阿里云優(yōu)惠2
您當前位置:首頁 > 互聯(lián)網(wǎng) > Codeforces Beta Round #75 (Div. 2)---A. Chips

Codeforces Beta Round #75 (Div. 2)---A. Chips

來源:程序員人生   發(fā)布時間:2014-11-19 08:11:52 閱讀次數(shù):2165次

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?≤?501?≤?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
0
input
17 107
output
2
input
3 8
output
1
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順次循環(huán)相連,即1 -> 2 -> ... -> n⑴ -> n -> 1.現(xiàn)有數(shù)m,從順次從1的位置開始,如果m >= 1,則m -= 1.順次i循環(huán)移動,直到m < i時,輸出m便可。直接判斷1下當i是n的倍數(shù)時,i = n;否則i = i%n便可。




AC代碼:

#include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #include <string> #include <math.h> #include <stdlib.h> #include <time.h> using namespace std; #define INF 0x7fffffff int 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 ", m); break; } m -= i; } } return 0; }

 

生活不易,碼農(nóng)辛苦
如果您覺得本網(wǎng)站對您的學習有所幫助,可以手機掃描二維碼進行捐贈
程序員人生
------分隔線----------------------------
分享到:
------分隔線----------------------------
關閉
程序員人生
主站蜘蛛池模板: 在线免费福利 | 日本一区二区三区有限公司 | 亚洲人成片在线观看 | 国产高清毛片 | 亚洲成人天堂 | 免费观看18视频网站 | 澳门成人免费永久视频 | 动漫精品一级毛片动漫 | 国产成人精品第一区二区 | 日韩欧美亚洲国产一区二区三区 | 亚洲黄色中文字幕 | 外国一级黄色毛片 | 欧美一区二区三区视频在线 | 国产成人精品三区 | 国产精品一级二级三级 | 尤物精品在线观看 | 欧美性另类高清 | 国产精品福利视频手机免费观看 | 亚洲黄色片免费看 | 复仇之路在线观看免费版高清 | h视频免费观看 | 国产成人精品久久一区二区小说 | 欧美性受xxxx喷水视频 | 成人乱码一区二区三区四区 | 国产精品亚洲第一区二区三区 | 在线观看中文字幕国产 | 精品国产一区二区二三区在线观看 | 欧美成人h版整片合集 | 羞羞动漫在线免费观看 | 一级a毛片免费观看久久精品 | 国产第一页视频 | 老司机午夜精品99久久免费 | 亚洲一成人毛片 | 精品日韩 | 国产成人黄网址在线视频 | 激情做人爱免费视频 | 最近最新中文字幕国语片 | 精品国产毛片 | 国产一区二区在线视频观看 | 最新欧美一级视频 | 欧美日韩在线永久免费播放 |