結果
問題 | No.1514 Squared Matching |
ユーザー | yakki |
提出日時 | 2021-05-22 00:05:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,527 bytes |
コンパイル時間 | 1,255 ms |
コンパイル使用メモリ | 124,280 KB |
実行使用メモリ | 602,244 KB |
最終ジャッジ日時 | 2024-10-10 10:23:21 |
合計ジャッジ時間 | 6,716 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> #include<cstdio> #include<cstdlib> #include<numeric> //#include<atcoder/all> using namespace std; //using namespace atcoder; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 #define MOD 1000000007 //#define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1.0) const double EPS = 1e-10; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; bool is_square(int a){ int b = sqrt(a); return b*b == a; } int main(){ int n; cin >> n; vector<int> square_sum(n+1); repr(i,1,n+1){ if(is_square(i)) square_sum[i] = square_sum[i-1]+1; else square_sum[i] = square_sum[i-1]; } ll ans = 0; vector<bool> prime(n+1,true); vector<ll> to_prod(n+1,1); for(int i = 2; i <= n; i++){ if(!prime[i]) continue; for(int j = i; j <= n; j+=i){ prime[j] = false; int cnt = 0; int k = j; while(k%i==0){ k /= i; cnt++; } if(cnt%2==1) to_prod[j] *= i; } } repr(i,1,n+1){ if(to_prod[i] <= n){ ans += square_sum[n/to_prod[i]]; } } cout << ans << endl; }