Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60331 | 张弛 | S2 | C++ | 运行超时 | 50 | 1000 MS | 560 KB | 782 | 2022-10-15 11:25:55 |
#include<bits/stdc++.h> using namespace std; inline int read(){ char c = getchar(); int w = 1 , s = 0; while(!isdigit(c)){ if(c == '-') w = -1; c = getchar(); } while(isdigit(c)) s = (s << 3) + (s << 1) + (c ^ 48) , c = getchar(); return w * s; } const int M = 1e5 + 10; int a[M]; int n , m; int main(){ // freopen("S2.in" , "r" , stdin); // freopen("S2.out" , "w" , stdout); n = read() , m = read(); if(m == 0){ for(int i = 1 ; i <= n ; i++) printf("%d " , i); puts(""); return 0; } for(int i = 1 ; i <= m ; i++) a[i] = read(); for(int i = 1 ; i <= n ; i++){ int k = i; for(int j = 1 ; j <= m ; j++){ if(k % a[j]) k += a[j] - k % a[j]; } printf("%d " , k); } puts(""); return 0; }