結果

問題 No.1262 グラフを作ろう!
ユーザー msm1993msm1993
提出日時 2020-10-23 15:40:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 3,000 ms
コード長 1,462 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 167,148 KB
実行使用メモリ 19,180 KB
最終ジャッジ日時 2024-07-21 10:08:51
合計ジャッジ時間 31,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
19,072 KB
testcase_01 AC 304 ms
19,072 KB
testcase_02 AC 291 ms
18,944 KB
testcase_03 AC 256 ms
18,944 KB
testcase_04 AC 126 ms
18,944 KB
testcase_05 AC 217 ms
18,944 KB
testcase_06 AC 126 ms
18,944 KB
testcase_07 AC 129 ms
19,176 KB
testcase_08 AC 216 ms
19,072 KB
testcase_09 AC 222 ms
19,072 KB
testcase_10 AC 180 ms
19,072 KB
testcase_11 AC 205 ms
19,044 KB
testcase_12 AC 241 ms
19,072 KB
testcase_13 AC 296 ms
19,072 KB
testcase_14 AC 171 ms
18,944 KB
testcase_15 AC 169 ms
19,072 KB
testcase_16 AC 214 ms
19,048 KB
testcase_17 AC 228 ms
19,072 KB
testcase_18 AC 257 ms
18,944 KB
testcase_19 AC 149 ms
19,072 KB
testcase_20 AC 196 ms
18,944 KB
testcase_21 AC 332 ms
19,048 KB
testcase_22 AC 121 ms
18,944 KB
testcase_23 AC 234 ms
19,072 KB
testcase_24 AC 237 ms
19,072 KB
testcase_25 AC 135 ms
19,072 KB
testcase_26 AC 162 ms
18,944 KB
testcase_27 AC 168 ms
19,052 KB
testcase_28 AC 192 ms
19,180 KB
testcase_29 AC 177 ms
19,052 KB
testcase_30 AC 151 ms
19,052 KB
testcase_31 AC 313 ms
19,052 KB
testcase_32 AC 203 ms
18,944 KB
testcase_33 AC 148 ms
19,048 KB
testcase_34 AC 185 ms
19,072 KB
testcase_35 AC 245 ms
19,072 KB
testcase_36 AC 148 ms
19,172 KB
testcase_37 AC 341 ms
19,072 KB
testcase_38 AC 183 ms
19,072 KB
testcase_39 AC 220 ms
19,072 KB
testcase_40 AC 208 ms
19,044 KB
testcase_41 AC 158 ms
19,072 KB
testcase_42 AC 266 ms
19,072 KB
testcase_43 AC 179 ms
19,052 KB
testcase_44 AC 204 ms
19,072 KB
testcase_45 AC 237 ms
18,944 KB
testcase_46 AC 201 ms
18,944 KB
testcase_47 AC 191 ms
18,944 KB
testcase_48 AC 237 ms
18,944 KB
testcase_49 AC 362 ms
18,944 KB
testcase_50 AC 267 ms
19,072 KB
testcase_51 AC 287 ms
19,072 KB
testcase_52 AC 215 ms
19,072 KB
testcase_53 AC 218 ms
18,944 KB
testcase_54 AC 224 ms
18,944 KB
testcase_55 AC 200 ms
19,048 KB
testcase_56 AC 143 ms
19,048 KB
testcase_57 AC 315 ms
19,048 KB
testcase_58 AC 205 ms
19,048 KB
testcase_59 AC 224 ms
19,048 KB
testcase_60 AC 328 ms
19,052 KB
testcase_61 AC 190 ms
18,944 KB
testcase_62 AC 282 ms
19,072 KB
testcase_63 AC 227 ms
19,052 KB
testcase_64 AC 242 ms
19,072 KB
testcase_65 AC 139 ms
19,044 KB
testcase_66 AC 172 ms
18,944 KB
testcase_67 AC 167 ms
19,048 KB
testcase_68 AC 148 ms
18,944 KB
testcase_69 AC 198 ms
19,072 KB
testcase_70 AC 208 ms
19,052 KB
testcase_71 AC 418 ms
19,072 KB
testcase_72 AC 238 ms
19,176 KB
testcase_73 AC 224 ms
19,048 KB
testcase_74 AC 261 ms
18,944 KB
testcase_75 AC 195 ms
18,944 KB
testcase_76 AC 172 ms
19,072 KB
testcase_77 AC 201 ms
19,048 KB
testcase_78 AC 198 ms
19,072 KB
testcase_79 AC 311 ms
19,048 KB
testcase_80 AC 261 ms
19,048 KB
testcase_81 AC 213 ms
19,072 KB
testcase_82 AC 310 ms
19,072 KB
testcase_83 AC 203 ms
18,944 KB
testcase_84 AC 178 ms
19,072 KB
testcase_85 AC 302 ms
19,052 KB
testcase_86 AC 210 ms
18,944 KB
testcase_87 AC 224 ms
19,072 KB
testcase_88 AC 332 ms
19,180 KB
testcase_89 AC 182 ms
19,176 KB
testcase_90 AC 210 ms
19,048 KB
testcase_91 AC 225 ms
19,052 KB
testcase_92 AC 210 ms
19,048 KB
testcase_93 AC 278 ms
19,072 KB
testcase_94 AC 217 ms
19,052 KB
testcase_95 AC 270 ms
19,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';
  
#define MAX 1000001 
  
// phi[i] stores euler totient function for i 
// result[j] stores result for value j 
long long phi[MAX], result[MAX]; 
  
// Precomputation of phi[] numbers. Refer below link 
// for details : https://goo.gl/LUqdtY 
void computeTotient() 
{ 
    // Refer https://goo.gl/LUqdtY 
    phi[1] = 1; 
    for (int i=2; i<MAX; i++) 
    { 
        if (!phi[i]) 
        { 
            phi[i] = i-1; 
            for (int j = (i<<1); j<MAX; j+=i) 
            { 
                if (!phi[j]) 
                    phi[j] = j; 
  
                phi[j] = (phi[j]/i)*(i-1); 
            } 
        } 
    } 
}

// Precomputes result for all numbers till MAX 
void sumOfGcdPairs() 
{ 
    // Precompute all phi value 
    computeTotient(); 
  
    for (int i=1; i<MAX; ++i) 
    { 
        // Iterate throght all the divisors 
        // of i. 
        for (int j=2; i*j<MAX; ++j) 
            result[i*j] += i*phi[j]; 
    } 
  
    // Add summation of previous calculated sum 
    for (int i=2; i<MAX; i++) 
        result[i] += result[i-1]; 
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n, m;
    cin >> n >> m;

    sumOfGcdPairs();

    ll ans = 0;
    for (int i = 0; i < m; i++) {
        int a;
        cin >> a;
        ans += result[a] - result[a - 1];
    }
    cout << ans << newl;

    return 0;
}
0