Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
82031 肖开 class C++ 通过 100 1 MS 1544 KB 326 2023-08-16 16:54:07

Tests(25/25):


#include<bits/stdc++.h> using namespace std; int ans,k,x,y,p,q,a[100010],b[100010]; int main(){ cin>>k>>x>>y>>p>>q; for(int i=1;i<=k;i++){ if(i%(x+y)<=x&&i%(x+y)!=0){ } else a[i]=1; if(i%(p+q)<=p&&i%(p+q)!=0){ } else b[i]=1; if(a[i]==b[i]&&a[i]==1) ans++; } cout<<ans; return 0; }


测评信息: