結果

問題 No.1514 Squared Matching
ユーザー rianoriano
提出日時 2021-05-21 21:54:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 688 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 168,276 KB
実行使用メモリ 784,848 KB
最終ジャッジ日時 2024-10-10 08:28:56
合計ジャッジ時間 16,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 MLE -
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 13 ms
15,392 KB
testcase_07 AC 154 ms
152,644 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 164 ms
159,600 KB
testcase_23 AC 328 ms
315,800 KB
testcase_24 AC 495 ms
472,108 KB
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define Pr pair<ll,ll>
#define Tp tuple<ll,ll,ll>
using Graph = vector<vector<Pr>>;

ll mod = 998244353;

int main() {
    ll N; cin >> N;
    ll nsf[N+1];
    rep(i,N+1){
        nsf[i] = i;
    }
    for(ll i=1;i<=N;i++){
        if(nsf[i]==i){
            rep(j,N){
                if(i*j*j>N) break;
                nsf[i*j*j] = i;
            }
        }
    }
    ll counter[N+1];
    ll k = N;
    rep(i,N+1){
        while((ll)i*k*k>N) k--;
        counter[i] = k;
    }
    ll ans = 0;
    rep(i,N){
        ans += counter[nsf[i+1]];
    }
    cout << ans << endl;
}
0