結果

問題 No.1514 Squared Matching
ユーザー abc3abc3
提出日時 2022-06-05 04:56:28
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,031 ms / 4,000 ms
コード長 1,298 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 203,976 KB
実行使用メモリ 393,852 KB
最終ジャッジ日時 2024-09-21 04:03:54
合計ジャッジ時間 33,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1,810 ms
393,844 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 27 ms
9,216 KB
testcase_07 AC 337 ms
77,812 KB
testcase_08 AC 1,725 ms
379,576 KB
testcase_09 AC 1,493 ms
332,340 KB
testcase_10 AC 1,625 ms
359,592 KB
testcase_11 AC 1,706 ms
374,528 KB
testcase_12 AC 1,763 ms
385,024 KB
testcase_13 AC 1,774 ms
390,112 KB
testcase_14 AC 1,795 ms
392,192 KB
testcase_15 AC 1,797 ms
393,088 KB
testcase_16 AC 1,794 ms
393,600 KB
testcase_17 AC 1,810 ms
393,728 KB
testcase_18 AC 1,797 ms
393,728 KB
testcase_19 AC 1,798 ms
393,844 KB
testcase_20 AC 2,020 ms
393,852 KB
testcase_21 AC 2,031 ms
393,800 KB
testcase_22 AC 377 ms
81,344 KB
testcase_23 AC 709 ms
159,512 KB
testcase_24 AC 1,063 ms
237,568 KB
testcase_25 AC 1,415 ms
315,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

   #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)

    typedef long long ll;
    typedef unsigned long long ull;
    using P=pair<ll,ll>;
    using tp=tuple<ll,ll,ll>;
    const int INF=1001001001;
    const ll INFL=1e18;
    const int mod=1e9+7;

    void solve(){
        ll n;
        cin>>n;
        vector<ll>t(n+1);
        for(int i=1;i<=n;i++){
            t[i]=i;
        }
        ll ans=0;
        for(ll i=2;i*i<=n;i++){
            ll p=i*i;
            if(t[p]==p){
                for(ll j=p;j<=n;j+=p){
                    while(t[j]%p==0){
                        t[j]/=p;
                    }
                }
            }
        }
        for(ll a=1;a<=n;a++){
            ll x=n/t[a];
            ll cnt=sqrt(x);
            ans+=cnt;
        }
        cout<<ans<<endl;
    }

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();

        return 0;
    }
0