[2016-03-31][codeforces][659A][Round House]
Posted 红洋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-31][codeforces][659A][Round House]相关的知识,希望对你有一定的参考价值。
时间:2016-03-31 23:17:13 星期四
题目编号:[2016-03-31][codeforces][659A][Round House]
题目大意:n个数字绕成一个圈,沿着起点a,走b步,问最后能走到哪里
分析:直接 (a+b)%n,不过需要注意取模为0的时候,结果应该是n
#include <cstdio>
using namespace std;
int main(){
int n,a,b,ans;
scanf("%d%d%d",&n,&a,&b);
ans = (a + b)%n;
if(ans < 0) ans += n;
if(ans == 0) ans = n;
printf("%d\n",ans);
return 0;
}
以上是关于[2016-03-31][codeforces][659A][Round House]的主要内容,如果未能解决你的问题,请参考以下文章
Cheatsheet: 2016 03.01 ~ 03.31
FFmpeg static build - MinGW32-GCC-5.3.0_x86-x64_D_Drive_for_FFmpeg_static_2016.03.31