提交时间:2023-08-09 16:27:09
运行 ID: 81586
#include<bits/stdc++.h> using namespace std; int t[200005]; int x,y,p,q,k,ans=0; int main(){ cin>>k>>x>>y>>p>>q; for(int i=1;i<=k;i++){ if(i%(x+y)>x||i%(x+y)==0) t[i]++; } for(int i=1;i<=k;i++){ if(i%(p+q)>p||i%(p+q)==0) t[i]++; } for(int i=1;i<=k;i++){ if(t[i]==2) ans++; } cout<<ans; return 0; }