結果

問題 No.1514 Squared Matching
ユーザー rianoriano
提出日時 2021-05-21 21:58:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 739 ms / 4,000 ms
コード長 690 bytes
コンパイル時間 1,428 ms
コンパイル使用メモリ 167,640 KB
実行使用メモリ 394,096 KB
最終ジャッジ日時 2024-10-10 08:38:02
合計ジャッジ時間 14,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 739 ms
394,072 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 11 ms
9,352 KB
testcase_07 AC 118 ms
77,920 KB
testcase_08 AC 706 ms
379,696 KB
testcase_09 AC 604 ms
332,448 KB
testcase_10 AC 655 ms
359,852 KB
testcase_11 AC 697 ms
374,868 KB
testcase_12 AC 705 ms
385,244 KB
testcase_13 AC 715 ms
390,196 KB
testcase_14 AC 724 ms
392,408 KB
testcase_15 AC 725 ms
393,392 KB
testcase_16 AC 722 ms
393,660 KB
testcase_17 AC 725 ms
393,980 KB
testcase_18 AC 714 ms
394,096 KB
testcase_19 AC 716 ms
394,072 KB
testcase_20 AC 717 ms
393,960 KB
testcase_21 AC 718 ms
394,076 KB
testcase_22 AC 123 ms
81,432 KB
testcase_23 AC 253 ms
159,688 KB
testcase_24 AC 394 ms
237,780 KB
testcase_25 AC 551 ms
315,856 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    int 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;
            }
        }
    }
    int 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