이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define pb push_back
#define all(x) x.begin(), x.end()
const int N = 1e3+10;
int n;
ll arr[N], ans[N];
int main(){
cin.tie(0); ios::sync_with_stdio(0);
cin >> n;
for(int i = 1; i <= n; i++) cin >> arr[i];
for(int i = 2; i <= n; i++){
vector<int> x(3);
for(int j = 1; j < i; j++){
if(arr[i] % arr[j] == 0){
x[ans[j]]++;
}
}
int mn = min_element(all(x)) - x.begin();
ans[i] = mn;
}
for(int i = 2; i <= n; i++){for(int j = 1; j < i; j++) cout << ans[j] + 1 << ' '; cout << '\n';}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |