結果

問題 No.2451 Redistribute Integers
ユーザー MARTHMARTH
提出日時 2023-09-01 21:32:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,872 ms
コンパイル使用メモリ 199,760 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-06-11 11:00:17
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rrep(i,a,b) for(int i=(int)(a);i<=(int)(b);i++)
#define all(v) v.begin(),v.end()
typedef long long ll;
typedef pair<int,int> pii;
#include <atcoder/convolution>
#include <atcoder/modint>
//using mint = atcoder::modint1000000007;
using mint = atcoder::modint998244353;
//.val()でintとして出力 llに注意
ll INF=1e15;
ll modpow(ll a,ll x,ll M){//a^x modM
              ll r=1;
              for (; x>0; x>>=1,a=a*a%M) if (x&1) r=r*a%M;
             return r;
}

int N;
ll A[500009];
string ans="Yes";

int main(){
	cin >> N;
	rep(i,N){
		cin >> A[i];
	}
	rrep(i,1,N-1){
		if(abs(A[1]-A[i])%(N)!=0) ans="No";
	}
	cout << ans << endl;
}
0