結果

問題 No.1262 グラフを作ろう!
ユーザー finefine
提出日時 2020-10-16 23:53:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 3,000 ms
コード長 1,462 bytes
コンパイル時間 1,356 ms
コンパイル使用メモリ 165,900 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-07-21 01:05:44
合計ジャッジ時間 23,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
18,944 KB
testcase_01 AC 154 ms
18,944 KB
testcase_02 AC 181 ms
18,944 KB
testcase_03 AC 184 ms
18,944 KB
testcase_04 AC 104 ms
18,944 KB
testcase_05 AC 140 ms
18,944 KB
testcase_06 AC 101 ms
18,944 KB
testcase_07 AC 105 ms
18,944 KB
testcase_08 AC 149 ms
19,072 KB
testcase_09 AC 165 ms
18,944 KB
testcase_10 AC 152 ms
18,944 KB
testcase_11 AC 176 ms
19,072 KB
testcase_12 AC 233 ms
18,944 KB
testcase_13 AC 220 ms
18,944 KB
testcase_14 AC 170 ms
18,944 KB
testcase_15 AC 143 ms
18,944 KB
testcase_16 AC 156 ms
19,072 KB
testcase_17 AC 166 ms
19,072 KB
testcase_18 AC 186 ms
18,944 KB
testcase_19 AC 108 ms
18,944 KB
testcase_20 AC 126 ms
18,944 KB
testcase_21 AC 295 ms
19,072 KB
testcase_22 AC 110 ms
18,944 KB
testcase_23 AC 153 ms
19,072 KB
testcase_24 AC 171 ms
19,072 KB
testcase_25 AC 112 ms
19,072 KB
testcase_26 AC 128 ms
19,072 KB
testcase_27 AC 152 ms
19,072 KB
testcase_28 AC 141 ms
18,944 KB
testcase_29 AC 126 ms
18,944 KB
testcase_30 AC 134 ms
19,072 KB
testcase_31 AC 196 ms
18,944 KB
testcase_32 AC 147 ms
18,944 KB
testcase_33 AC 119 ms
18,944 KB
testcase_34 AC 141 ms
18,944 KB
testcase_35 AC 181 ms
19,072 KB
testcase_36 AC 126 ms
18,944 KB
testcase_37 AC 197 ms
19,072 KB
testcase_38 AC 143 ms
18,944 KB
testcase_39 AC 152 ms
19,072 KB
testcase_40 AC 144 ms
18,944 KB
testcase_41 AC 126 ms
19,072 KB
testcase_42 AC 176 ms
18,944 KB
testcase_43 AC 135 ms
18,944 KB
testcase_44 AC 140 ms
18,944 KB
testcase_45 AC 163 ms
18,944 KB
testcase_46 AC 115 ms
18,944 KB
testcase_47 AC 162 ms
18,944 KB
testcase_48 AC 157 ms
18,944 KB
testcase_49 AC 184 ms
18,944 KB
testcase_50 AC 165 ms
19,072 KB
testcase_51 AC 166 ms
18,944 KB
testcase_52 AC 118 ms
18,944 KB
testcase_53 AC 112 ms
19,072 KB
testcase_54 AC 185 ms
19,072 KB
testcase_55 AC 216 ms
18,944 KB
testcase_56 AC 167 ms
19,072 KB
testcase_57 AC 318 ms
18,944 KB
testcase_58 AC 215 ms
18,944 KB
testcase_59 AC 116 ms
18,944 KB
testcase_60 AC 185 ms
19,072 KB
testcase_61 AC 132 ms
19,072 KB
testcase_62 AC 179 ms
19,072 KB
testcase_63 AC 186 ms
19,072 KB
testcase_64 AC 152 ms
19,072 KB
testcase_65 AC 109 ms
18,944 KB
testcase_66 AC 133 ms
19,072 KB
testcase_67 AC 120 ms
18,944 KB
testcase_68 AC 111 ms
19,072 KB
testcase_69 AC 126 ms
19,072 KB
testcase_70 AC 203 ms
18,944 KB
testcase_71 AC 181 ms
19,072 KB
testcase_72 AC 187 ms
19,072 KB
testcase_73 AC 183 ms
19,072 KB
testcase_74 AC 171 ms
18,944 KB
testcase_75 AC 162 ms
19,072 KB
testcase_76 AC 144 ms
18,944 KB
testcase_77 AC 227 ms
19,072 KB
testcase_78 AC 172 ms
18,944 KB
testcase_79 AC 223 ms
18,944 KB
testcase_80 AC 146 ms
18,944 KB
testcase_81 AC 167 ms
19,072 KB
testcase_82 AC 258 ms
19,072 KB
testcase_83 AC 195 ms
18,944 KB
testcase_84 AC 155 ms
18,944 KB
testcase_85 AC 257 ms
19,072 KB
testcase_86 AC 218 ms
19,072 KB
testcase_87 AC 211 ms
18,944 KB
testcase_88 AC 200 ms
19,072 KB
testcase_89 AC 208 ms
18,944 KB
testcase_90 AC 198 ms
18,944 KB
testcase_91 AC 180 ms
19,200 KB
testcase_92 AC 216 ms
18,944 KB
testcase_93 AC 263 ms
18,944 KB
testcase_94 AC 177 ms
19,072 KB
testcase_95 AC 178 ms
19,072 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