結果

問題 No.1514 Squared Matching
ユーザー auauaauaua
提出日時 2021-05-22 00:15:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 884 ms / 4,000 ms
コード長 1,043 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 169,536 KB
実行使用メモリ 393,844 KB
最終ジャッジ日時 2024-10-10 10:25:30
合計ジャッジ時間 16,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 807 ms
393,832 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 12 ms
9,184 KB
testcase_07 AC 123 ms
77,888 KB
testcase_08 AC 777 ms
379,712 KB
testcase_09 AC 674 ms
332,296 KB
testcase_10 AC 710 ms
359,720 KB
testcase_11 AC 737 ms
374,816 KB
testcase_12 AC 772 ms
385,008 KB
testcase_13 AC 786 ms
390,080 KB
testcase_14 AC 884 ms
392,168 KB
testcase_15 AC 789 ms
393,068 KB
testcase_16 AC 792 ms
393,500 KB
testcase_17 AC 796 ms
393,760 KB
testcase_18 AC 798 ms
393,796 KB
testcase_19 AC 796 ms
393,844 KB
testcase_20 AC 787 ms
393,792 KB
testcase_21 AC 785 ms
393,824 KB
testcase_22 AC 127 ms
81,300 KB
testcase_23 AC 269 ms
159,488 KB
testcase_24 AC 449 ms
237,560 KB
testcase_25 AC 600 ms
315,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef int ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
//const ll inf=INF*INF;
const ll mod=MOD;
const ll MAX=100010;




signed main(){
    ll n;cin>>n;
    ll ans=0;
    vector<ll>d(n+1,1);
    for(int i=sqrt(n)+1;i>=2;i--){
        ll k=i*i;
        ll z=i*i;
        while(k<=n){
            if(d[k]==1)d[k]=i;
            k+=z;
        }
    }
    vector<ll>cnt(n+1);
    REP(i,1,n+1){
        ll di=d[i];
        ll x=i/di/di;
        ans=ans+cnt[x];
        cnt[x]++;
    }
    ans*=2;
    ans+=n;
    cout<<ans<<endl;
}
0