結果
問題 | No.2451 Redistribute Integers |
ユーザー | MARTH |
提出日時 | 2023-09-01 21:28:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 2,765 ms |
コンパイル使用メモリ | 199,392 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-06-11 10:59:23 |
合計ジャッジ時間 | 5,845 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 168 ms
7,424 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 74 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 99 ms
5,376 KB |
testcase_17 | AC | 160 ms
6,272 KB |
testcase_18 | WA | - |
testcase_19 | AC | 19 ms
5,376 KB |
testcase_20 | AC | 174 ms
6,528 KB |
testcase_21 | AC | 215 ms
7,296 KB |
ソースコード
#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])%(2*N-2)!=0) ans="No"; } cout << ans << endl; }