# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
384852 | fadi57 | Spiderman (COCI20_spiderman) | C++14 | 1349 ms | 6436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int mx=60;
int n,l,r,k;
typedef long long ll;
ll a[mx];
int arr[1000008];
int main(){
int n,k;cin>>n>>k;
int h[n];
for(int i=0;i<n;i++){
cin>>h[i];
arr[h[i]]++;
}
for(int i=0;i<n;i++){
int ans=0;ans+=arr[h[i]];
if(ans){ans--;}
for(int j=2;j*j<=h[i];j++){
if(h[i]%j==0){
ans+=arr[j];
if((h[i]/j)!=j){
ans+=arr[h[i]/j];
}
}
}
cout<<ans<<" ";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |