# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
890252 | HADI_T | Spiderman (COCI20_spiderman) | C++14 | 1043 ms | 15696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
#define pb(x) push_back(x)
#define in(x) insert(x)
#define F first
#define S second
#define endl '\n'
#define yes cout<<"YES"<<endl;
#define no cout<<"NO"<<endl;
const int M=1e9+7;
const int N=1e6+10;
using namespace std;
int freq[N];
int32_t main()
{
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n,c;
cin>>n>>c;
int a[n+10] , ans[n+10]={0};
for(int i=1;i<=n;i++){
cin>>a[i];
freq[a[i]]++;
}
for(int i=1;i<=n;i++)
{
int cur = a[i] - c;
for(int j=1;j*j<=cur;j++)
{
if(cur % j == 0)
{
int f = j , s = cur/j;
if(cur + f > a[i])
ans[i] += freq[f];
if(cur + s > a[i]){
if(f != s)
ans[i] += freq[s];
}
}
}
}
sort(a+1,a+1+n);
int idx = n;
for(int i=n;i>=1;i--)
{
if(a[i] == c)
{
idx = i;
break;
}
}
for(int i=1;i<=n;i++){
if(a[i] == c)
ans[i] += n-idx;
cout<<ans[i]<<' ';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |