結果

問題 No.2860 Heal Slimes
ユーザー mitanimitani
提出日時 2024-08-25 15:56:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 5,939 ms
コンパイル使用メモリ 337,604 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 15:56:52
合計ジャッジ時間 12,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 86 ms
6,944 KB
testcase_11 AC 84 ms
6,944 KB
testcase_12 AC 85 ms
6,940 KB
testcase_13 AC 84 ms
6,944 KB
testcase_14 AC 84 ms
6,940 KB
testcase_15 AC 84 ms
6,940 KB
testcase_16 AC 81 ms
6,944 KB
testcase_17 AC 83 ms
6,940 KB
testcase_18 AC 84 ms
6,944 KB
testcase_19 AC 82 ms
6,944 KB
testcase_20 AC 64 ms
6,944 KB
testcase_21 AC 68 ms
6,940 KB
testcase_22 AC 43 ms
6,940 KB
testcase_23 AC 81 ms
6,940 KB
testcase_24 AC 76 ms
6,944 KB
testcase_25 AC 43 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 55 ms
6,940 KB
testcase_30 WA -
testcase_31 AC 74 ms
6,940 KB
testcase_32 WA -
testcase_33 AC 63 ms
6,940 KB
testcase_34 AC 81 ms
6,944 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 62 ms
6,940 KB
testcase_39 AC 66 ms
6,944 KB
testcase_40 AC 83 ms
6,940 KB
testcase_41 AC 84 ms
6,940 KB
testcase_42 AC 84 ms
6,940 KB
testcase_43 AC 84 ms
6,944 KB
testcase_44 AC 84 ms
6,940 KB
testcase_45 AC 83 ms
6,940 KB
testcase_46 AC 82 ms
6,944 KB
testcase_47 AC 87 ms
6,944 KB
testcase_48 AC 82 ms
6,944 KB
testcase_49 AC 82 ms
6,940 KB
testcase_50 AC 83 ms
6,940 KB
testcase_51 AC 82 ms
6,940 KB
testcase_52 AC 81 ms
6,940 KB
testcase_53 AC 81 ms
6,940 KB
testcase_54 AC 86 ms
6,940 KB
testcase_55 AC 84 ms
6,940 KB
testcase_56 AC 83 ms
6,944 KB
testcase_57 AC 82 ms
6,944 KB
testcase_58 AC 82 ms
6,940 KB
testcase_59 AC 82 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(x) x.begin(), x.end()
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<ll,ll>;
#include <atcoder/all>
using namespace atcoder;
//using mint=static_modint<998244353>;
using mint=static_modint<1000000007>;
////using mint=modint;
//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")

int inf=2147483647;
ll INF=9223372036854775807;
const ld PI=acos(-1);

void yn(bool f){
	if(f)cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
	return;
}

ll n,m;

bool in(int x,int y){
	if(x<0||n<=x)return false;
	if(y<0||m<=y)return false;
	return true;
}

vector<int> dx={1,-1,0,0};
vector<int> dy={0,0,1,-1};

bool isp(string s){
	rep(i,s.size())if(s[i]!=s[s.size()-1-i])return false;
	return true;
}

void solve(){
	ll n,k,x;cin>>n>>k>>x;
	vector<ll> h(n);
	rep(i,n)cin>>h[i];
	sort(all(h));
	reverse(all(h));

	ll ma=h[0];
	ll ans=0;

	for(int i=1;i<n;i++){
		if((h[0]-h[1])%x!=0){
			cout<<"No"<<endl;
			return;
		}
		ans+=(h[0]-h[i])/x;
	}


	if(ans%gcd(k,n)==0){
		cout<<"Yes"<<endl;
		return;
	}

	cout<<"No"<<endl;
}

int main(){
	ll t;cin>>t;
	rep(i,t)solve();
}
0