Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60414 | Cyril | S2 | C++ | 运行超时 | 50 | 1000 MS | 584 KB | 399 | 2022-10-15 11:31:21 |
#include<bits/stdc++.h> using namespace std; const int M=1e5+5; int a[M]; int main() { // freopen("S2.in","r",stdin); // freopen("S2.out","w",stdout); ios::sync_with_stdio(0),cin.tie(0); int n,m,k; cin>>n>>m; for(int i=1;i<=m;i++) cin>>a[i]; for(int i=1;i<=n;i++) { k=i; for(int j=1;j<=m;j++) { while(k%a[j]!=0) { k++; } } printf("%d ",k); } return 0; }