結果
問題 | No.854 公平なりんご分配 |
ユーザー | ahe100 |
提出日時 | 2019-07-26 22:41:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,472 bytes |
コンパイル時間 | 1,646 ms |
コンパイル使用メモリ | 171,984 KB |
実行使用メモリ | 136,420 KB |
最終ジャッジ日時 | 2024-07-02 08:35:38 |
合計ジャッジ時間 | 32,069 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
14,948 KB |
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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 8 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
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 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | WA | - |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | WA | - |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | WA | - |
testcase_81 | WA | - |
testcase_82 | TLE | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(ll i = 0;i<((ll)(n));i++) #define reg(i,a,b) for(ll i = ((ll)(a));i<=((ll)(b));i++) #define irep(i,n) for(ll i = ((ll)(n)-1);i>=0;i--) #define ireg(i,a,b) for(ll i = ((ll)(b));i>=((ll)(a));i--) /* 何故かエラー出る */ int n,m,a[100010],q,p[100010]; int l[100010],r[100010],fact[2010][305],dp[100010][305],zero[100010]; vector<ll> prime; void prime_list(ll n,vector<ll>& prime_){ ll visited[2010]={}; reg(i,2,n){ if(visited[i]==0){ prime_.push_back(i); reg(j,2,n){ if(j*i>n)break; visited[i*j]=1; } } } } ll modpow(__int128_t a, ll n,ll mo) { __int128_t r=1; while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1; return r; } void init(){ cin>>n; reg(i,1,n)cin>>a[i]; cin>>q; rep(i,q)cin>>p[i]>>l[i]>>r[i]; prime_list(2000,prime); m = prime.size(); rep(j,m)fact[0][j]=0; reg(i,1,2000){ ll t = i; rep(j,m){ fact[i][j]=0; while(t%prime[j]==0){ t/=prime[j]; fact[i][j]++; } } } zero[0]=0; rep(j,m)dp[0][j]=0; reg(i,1,n){ zero[i]=zero[i-1]; if(a[i]==0)zero[i]++; rep(j,m)dp[i][j] = dp[i-1][j] + fact[a[i]][j]; } // reg(i,1,n){ // rep(j,3)cerr<<dp[i][j]<<" "; // cerr<<endl; // } } int main(void){ init(); rep(i,q){ ll tmp=1; if(zero[r[i]]-zero[l[i]-1]>0)tmp=0; rep(j,m){ tmp *= modpow(prime[j], dp[r[i]][j] - dp[l[i]-1][j], p[i]); tmp %= p[i]; } cout<<(tmp==0?"Yes":"No")<<endl; } return 0; }