Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
81586 | 王籽易 | class | C++ | 通过 | 100 | 1 MS | 640 KB | 329 | 2023-08-09 16:27:09 |
#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; }