結果

問題 No.1514 Squared Matching
ユーザー 👑 rin204rin204
提出日時 2022-01-28 19:16:50
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 813 ms / 4,000 ms
コード長 586 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 199,676 KB
実行使用メモリ 394,240 KB
最終ジャッジ日時 2024-12-29 22:56:34
合計ジャッジ時間 17,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
5,248 KB
testcase_01 AC 813 ms
394,112 KB
testcase_02 AC 33 ms
5,248 KB
testcase_03 AC 32 ms
5,248 KB
testcase_04 AC 33 ms
5,248 KB
testcase_05 AC 34 ms
5,248 KB
testcase_06 AC 40 ms
9,472 KB
testcase_07 AC 166 ms
78,080 KB
testcase_08 AC 744 ms
379,776 KB
testcase_09 AC 665 ms
332,544 KB
testcase_10 AC 703 ms
360,064 KB
testcase_11 AC 731 ms
374,912 KB
testcase_12 AC 773 ms
385,152 KB
testcase_13 AC 775 ms
390,272 KB
testcase_14 AC 780 ms
392,320 KB
testcase_15 AC 773 ms
393,472 KB
testcase_16 AC 775 ms
393,856 KB
testcase_17 AC 777 ms
393,984 KB
testcase_18 AC 777 ms
394,240 KB
testcase_19 AC 758 ms
394,112 KB
testcase_20 AC 768 ms
394,112 KB
testcase_21 AC 781 ms
393,984 KB
testcase_22 AC 159 ms
81,536 KB
testcase_23 AC 339 ms
159,744 KB
testcase_24 AC 457 ms
237,824 KB
testcase_25 AC 595 ms
316,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int div_[50001000];
int cnt[50001000];
int main(void){
    int n;
    cin >> n;
    for(int i = 1; i <= n; i++) div_[i] = 1;
    for(int j = 2; j * j <= n; j++){
        for(int k = j * j; k <= n; k += j * j){
            div_[k] = j * j;
        }
    }

    long long ans = 0;
    for(int i = 1; i <= n; i++){
        int j = i;
        if (div_[i] != 1){
            j /= div_[i];
        }
        div_[i] = j;
        cnt[j]++;
    }
    for(auto c: cnt){
        ans += (long long) c * (long long) c;
    }
    cout << ans << "\n";
}
0