Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60318 | xyh2022 | S2 | C++ | 运行超时 | 50 | 1000 MS | 564 KB | 456 | 2022-10-15 11:25:07 |
#include<bits/stdc++.h> using namespace std; const int N=1e5+10; int n,m,a[N]; long long now; int main(){ //freopen("S2.in","r",stdin); //freopen("S2.out","w",stdout); scanf("%d%d",&n,&m); for(register int i=1;i<=m;i++){ scanf("%d",&a[i]); } for(register int i=1;i<=n;i++){ now=i; for(register int j=1;j<=m;j++){ long long kk=now/a[j]; if(kk*a[j]<now) kk++; now=kk*a[j]; } printf("%lld ",now); } return 0; }