結果

問題 No.1514 Squared Matching
ユーザー yakkiyakki
提出日時 2021-05-22 00:34:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,136 ms / 4,000 ms
コード長 1,406 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 123,836 KB
実行使用メモリ 400,068 KB
最終ジャッジ日時 2024-10-10 10:27:57
合計ジャッジ時間 36,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2,136 ms
400,068 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 30 ms
9,372 KB
testcase_07 AC 385 ms
79,052 KB
testcase_08 AC 1,958 ms
385,460 KB
testcase_09 AC 1,721 ms
337,452 KB
testcase_10 AC 1,871 ms
365,308 KB
testcase_11 AC 1,939 ms
380,536 KB
testcase_12 AC 2,004 ms
390,888 KB
testcase_13 AC 2,052 ms
396,068 KB
testcase_14 AC 2,067 ms
398,208 KB
testcase_15 AC 2,063 ms
399,220 KB
testcase_16 AC 2,069 ms
399,664 KB
testcase_17 AC 2,052 ms
399,852 KB
testcase_18 AC 2,045 ms
400,052 KB
testcase_19 AC 2,044 ms
399,916 KB
testcase_20 AC 2,070 ms
400,040 KB
testcase_21 AC 2,098 ms
399,948 KB
testcase_22 AC 402 ms
82,524 KB
testcase_23 AC 812 ms
161,868 KB
testcase_24 AC 1,226 ms
241,116 KB
testcase_25 AC 1,630 ms
320,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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>;

ll square_sum(int a){
    return (ll)sqrt(a);
}

int main(){
    int n; cin >> n;
    ll ans = 0;
    vector<ll> to_prod(n+1);
    vector<bool> prime(n+1,true);
    for(ll i = 2; i*i <= n; i++){
        if(!prime[i]) continue;
        for(int j = i+i; j <= n; j+=i){
            prime[j] = false;
        }
    }
    repr(i,1,n+1) to_prod[i] = i;
    for(ll i = 2; i*i <= n; i++){
        if(prime[i]){
            ll k = i*i;
            for(ll j = k; j <= n; j+=k){
                while(to_prod[j]%k==0) to_prod[j] /= k;
            }
        }
    }
    repr(i,1,n+1){
        if(to_prod[i] <= n){
            ans += square_sum(n/to_prod[i]);
        }
    }
    cout << ans << endl;

}



0