제출 #197952

#제출 시각아이디문제언어결과실행 시간메모리
197952model_codeSpiderman (COCI20_spiderman)C++17
70 / 70
882 ms6364 KiB
#include <bits/stdc++.h> using namespace std; #define TRACE(x) cerr << #x << " " << x << endl #define FOR(i, a, b) for (int i = (a); i < int(b); ++i) #define REP(i, n) FOR(i, 0, n) #define _ << " " << typedef long long llint; const int MAXN = 3e5 + 10; const int MAXH = 1e6 + 10; int n, k, gtk; int h[MAXN], cnt[MAXH]; int main(void) { scanf("%d%d", &n, &k); for (int i = 0; i < n; ++i) { scanf("%d", &h[i]); cnt[h[i]]++; gtk += h[i] > k; } for (int i = 0; i < n; ++i) { int ret = 0; if (h[i] < k) { printf("0 "); continue; } if (h[i] == k) { printf("%d ", gtk); continue; } for (int j = 1; j * j <= h[i] - k; ++j) { if ((h[i] - k) % j != 0) continue; if (h[i] % j == k) ret += cnt[j]; if (j * j != h[i] - k && h[i] % ((h[i] - k) / j) == k) ret += cnt[(h[i] - k) / j]; } if (k == 0) --ret; printf("%d ", ret); } printf("\n"); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

spiderman.cpp: In function 'int main()':
spiderman.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &n, &k);
   ~~~~~^~~~~~~~~~~~~~~~
spiderman.cpp:21:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &h[i]);
     ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...