제출 #1125862

#제출 시각아이디문제언어결과실행 시간메모리
1125862AgageldiBrunhilda’s Birthday (BOI13_brunhilda)C++20
41.43 / 100
1097 ms968 KiB
/* ID: agageld1 LANG: C++17 TASK: */ #include <bits/stdc++.h> using namespace std; #define ll long long #define N 400005 #define ff first #define ss second #define pb push_back #define sz(s) (int)s.size() #define rep(c, a, b) for(c = a; c <= b; c++) //mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); ll n, t, m, q; string s, g, h; vector <int> a; int main () { //freopen("txt.in","r",stdin); //freopen("txt.out","w",stdout); ios::sync_with_stdio(0);cin.tie(0); cin >> m >> q; for(int i= 1;i<=m;i++) { int x; cin >> x; a.pb(x); } sort(a.begin(),a.end()); for(int j = 1;j<=q;j++) { int x, cnt = 0; cin >> x; while(1) { if(x < a[m - 1]) { x = 0; cnt++; break; } int mx = INT_MAX; for(auto i:a) { if(mx > (x / i) * i) mx = (x/i)*i; } if(mx == x) { cout << "oo\n"; break; } cnt++; x = mx; } if(!x)cout << cnt << '\n'; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...