結果
問題 | No.2860 Heal Slimes |
ユーザー | mitani |
提出日時 | 2024-08-25 15:53:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,261 bytes |
コンパイル時間 | 4,012 ms |
コンパイル使用メモリ | 233,160 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-25 15:53:30 |
合計ジャッジ時間 | 11,125 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 83 ms
6,944 KB |
testcase_11 | AC | 81 ms
6,940 KB |
testcase_12 | AC | 83 ms
6,944 KB |
testcase_13 | AC | 83 ms
6,940 KB |
testcase_14 | AC | 84 ms
6,940 KB |
testcase_15 | AC | 88 ms
6,940 KB |
testcase_16 | AC | 84 ms
6,944 KB |
testcase_17 | AC | 84 ms
6,944 KB |
testcase_18 | AC | 84 ms
6,940 KB |
testcase_19 | AC | 80 ms
6,944 KB |
testcase_20 | AC | 60 ms
6,944 KB |
testcase_21 | AC | 65 ms
6,944 KB |
testcase_22 | AC | 43 ms
6,944 KB |
testcase_23 | AC | 83 ms
6,940 KB |
testcase_24 | AC | 75 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 83 ms
6,940 KB |
testcase_41 | AC | 81 ms
6,944 KB |
testcase_42 | AC | 78 ms
6,940 KB |
testcase_43 | AC | 78 ms
6,944 KB |
testcase_44 | AC | 80 ms
6,944 KB |
testcase_45 | AC | 86 ms
6,940 KB |
testcase_46 | AC | 83 ms
6,940 KB |
testcase_47 | AC | 81 ms
6,940 KB |
testcase_48 | AC | 79 ms
6,944 KB |
testcase_49 | AC | 79 ms
6,944 KB |
testcase_50 | AC | 77 ms
6,940 KB |
testcase_51 | AC | 84 ms
6,944 KB |
testcase_52 | AC | 79 ms
6,940 KB |
testcase_53 | AC | 75 ms
6,944 KB |
testcase_54 | AC | 82 ms
6,944 KB |
testcase_55 | AC | 82 ms
6,944 KB |
testcase_56 | AC | 83 ms
6,940 KB |
testcase_57 | AC | 83 ms
6,944 KB |
testcase_58 | AC | 86 ms
6,944 KB |
testcase_59 | AC | 83 ms
6,940 KB |
ソースコード
#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(n%k!=0){ cout<<"Yes"<<endl; return; } if(n%k==0){ if(ans%k==0){ cout<<"Yes"<<endl; return; } } cout<<"No"<<endl; } int main(){ ll t;cin>>t; rep(i,t)solve(); }