結果

問題 No.1514 Squared Matching
ユーザー kai4096_donkai4096_don
提出日時 2021-09-10 22:16:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 638 ms / 4,000 ms
コード長 589 bytes
コンパイル時間 3,865 ms
コンパイル使用メモリ 229,448 KB
実行使用メモリ 393,928 KB
最終ジャッジ日時 2024-06-12 00:44:37
合計ジャッジ時間 14,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 638 ms
393,856 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 10 ms
9,268 KB
testcase_07 AC 96 ms
77,824 KB
testcase_08 AC 559 ms
379,568 KB
testcase_09 AC 419 ms
332,356 KB
testcase_10 AC 446 ms
359,848 KB
testcase_11 AC 535 ms
374,740 KB
testcase_12 AC 486 ms
385,128 KB
testcase_13 AC 492 ms
390,196 KB
testcase_14 AC 491 ms
392,196 KB
testcase_15 AC 492 ms
393,060 KB
testcase_16 AC 489 ms
393,740 KB
testcase_17 AC 494 ms
393,928 KB
testcase_18 AC 492 ms
393,816 KB
testcase_19 AC 498 ms
393,812 KB
testcase_20 AC 531 ms
393,784 KB
testcase_21 AC 504 ms
393,820 KB
testcase_22 AC 100 ms
81,340 KB
testcase_23 AC 198 ms
159,440 KB
testcase_24 AC 297 ms
237,592 KB
testcase_25 AC 395 ms
315,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//const long nPrime = 1000000007;
//const long nPrime = 998244353;
typedef long long ll;
int main() {
    long n;
    cin >> n;
    vector<long> viCheck(n+1,0);
    long nAns = 0;
    for(long i = 1; i <= n; i++){
        if(viCheck[i] == 1){
            continue;
        }
        long nCount = 1;
        for(; i*nCount*nCount <= n; nCount++){
            viCheck[i*nCount*nCount] = 1;
        }
        nCount--;
        nAns += nCount*nCount;
    }
    cout << nAns << endl;
    return 0;
}
0