結果

問題 No.1514 Squared Matching
ユーザー momoyuumomoyuu
提出日時 2023-04-28 13:17:36
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 783 ms / 4,000 ms
コード長 478 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 245,924 KB
実行使用メモリ 393,872 KB
最終ジャッジ日時 2024-11-17 13:52:05
合計ジャッジ時間 16,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 783 ms
393,868 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 7 ms
9,216 KB
testcase_07 AC 106 ms
77,760 KB
testcase_08 AC 735 ms
379,580 KB
testcase_09 AC 606 ms
332,304 KB
testcase_10 AC 659 ms
359,760 KB
testcase_11 AC 678 ms
374,548 KB
testcase_12 AC 707 ms
384,984 KB
testcase_13 AC 717 ms
390,072 KB
testcase_14 AC 712 ms
392,160 KB
testcase_15 AC 717 ms
393,108 KB
testcase_16 AC 716 ms
393,588 KB
testcase_17 AC 721 ms
393,740 KB
testcase_18 AC 718 ms
393,872 KB
testcase_19 AC 713 ms
393,856 KB
testcase_20 AC 714 ms
393,844 KB
testcase_21 AC 725 ms
393,828 KB
testcase_22 AC 107 ms
81,408 KB
testcase_23 AC 264 ms
159,360 KB
testcase_24 AC 421 ms
237,564 KB
testcase_25 AC 574 ms
315,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ll n;
    cin>>n;
    vector<ll> cnt(n+2,0);
    for(ll i = 1;i*i<=n;i++){
        ll le = n / (i*i);
        cnt[1]++;
        cnt[le+1]--;
    }
    for(int i = 1;i<=n+1;i++) cnt[i] += cnt[i-1];
    for(ll i = 2;i*i<=n;i++){
        ll now = i * i;
        for(;now<=n+1;now+=i*i) cnt[now] = 0;
    }
    ll ans = 0;
    for(int i = 1;i<=n;i++) ans += cnt[i] * cnt[i];
    cout<<ans<<endl;
}
0