A. Dima and Friends1000 / 思维
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Dima and Friends1000 / 思维相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/272/A
#include<bits/stdc++.h>
using namespace std;
int a[105],n,sum;
int main(void)
{
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i],sum+=a[i];
int cnt=0;
for(int i=1;i<=5;i++)
{
if((sum+i)%(n+1)!=1) cnt++;
}
cout<<cnt<<endl;
}
以上是关于A. Dima and Friends1000 / 思维的主要内容,如果未能解决你的问题,请参考以下文章
A. Mike and palindrome1000 / 思维
A. Dreamoon and Stairs1000 / 暴力
A. Jzzhu and Children1000 / 模拟