이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1010;
int n;
ll x[N], mx[N];
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef _LOCAL
freopen("in.txt","r",stdin);
#endif // _LOCAL
cin >> n;
for (int i = 0; i < n; i++)
cin >> x[i];
for (int i = 0; i < n; i++){
mx[i] = 0;
while ((1ll << (mx[i] + 1)) <= x[i])
mx[i]++;
for (int j = 0; j < i; j++){
if (mx[i] / 4 == mx[j] / 4)
cout << "1 "; else
if (mx[i] / 16 == mx[j] / 16)
cout << "2 ";
else cout << "3 ";
}
cout << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |