結果

問題 No.1262 グラフを作ろう!
ユーザー 👑 emthrmemthrm
提出日時 2020-10-16 23:31:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 286 ms / 3,000 ms
コード長 1,760 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 203,620 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-07-21 00:08:19
合計ジャッジ時間 20,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
8,576 KB
testcase_01 AC 131 ms
7,552 KB
testcase_02 AC 168 ms
10,752 KB
testcase_03 AC 118 ms
5,888 KB
testcase_04 AC 68 ms
12,672 KB
testcase_05 AC 101 ms
9,728 KB
testcase_06 AC 94 ms
14,336 KB
testcase_07 AC 22 ms
5,376 KB
testcase_08 AC 153 ms
13,056 KB
testcase_09 AC 75 ms
5,376 KB
testcase_10 AC 79 ms
6,912 KB
testcase_11 AC 173 ms
13,952 KB
testcase_12 AC 145 ms
7,680 KB
testcase_13 AC 129 ms
6,144 KB
testcase_14 AC 79 ms
7,680 KB
testcase_15 AC 58 ms
5,376 KB
testcase_16 AC 152 ms
12,160 KB
testcase_17 AC 128 ms
10,240 KB
testcase_18 AC 192 ms
12,032 KB
testcase_19 AC 63 ms
11,392 KB
testcase_20 AC 134 ms
14,848 KB
testcase_21 AC 203 ms
10,752 KB
testcase_22 AC 52 ms
10,880 KB
testcase_23 AC 84 ms
5,632 KB
testcase_24 AC 158 ms
12,672 KB
testcase_25 AC 36 ms
7,936 KB
testcase_26 AC 56 ms
8,832 KB
testcase_27 AC 112 ms
12,416 KB
testcase_28 AC 91 ms
11,008 KB
testcase_29 AC 78 ms
12,032 KB
testcase_30 AC 71 ms
8,576 KB
testcase_31 AC 168 ms
8,576 KB
testcase_32 AC 118 ms
8,832 KB
testcase_33 AC 34 ms
5,376 KB
testcase_34 AC 155 ms
14,208 KB
testcase_35 AC 128 ms
6,656 KB
testcase_36 AC 38 ms
5,376 KB
testcase_37 AC 204 ms
11,904 KB
testcase_38 AC 121 ms
11,136 KB
testcase_39 AC 72 ms
5,376 KB
testcase_40 AC 79 ms
6,912 KB
testcase_41 AC 96 ms
12,928 KB
testcase_42 AC 186 ms
12,672 KB
testcase_43 AC 96 ms
10,112 KB
testcase_44 AC 104 ms
9,216 KB
testcase_45 AC 184 ms
13,696 KB
testcase_46 AC 109 ms
14,720 KB
testcase_47 AC 72 ms
5,376 KB
testcase_48 AC 151 ms
11,904 KB
testcase_49 AC 194 ms
11,648 KB
testcase_50 AC 171 ms
12,800 KB
testcase_51 AC 83 ms
5,504 KB
testcase_52 AC 106 ms
13,824 KB
testcase_53 AC 32 ms
6,272 KB
testcase_54 AC 132 ms
7,680 KB
testcase_55 AC 107 ms
8,320 KB
testcase_56 AC 89 ms
12,416 KB
testcase_57 AC 227 ms
13,696 KB
testcase_58 AC 115 ms
7,040 KB
testcase_59 AC 96 ms
13,056 KB
testcase_60 AC 207 ms
12,928 KB
testcase_61 AC 67 ms
7,424 KB
testcase_62 AC 166 ms
10,624 KB
testcase_63 AC 130 ms
6,784 KB
testcase_64 AC 99 ms
8,192 KB
testcase_65 AC 47 ms
8,832 KB
testcase_66 AC 73 ms
7,808 KB
testcase_67 AC 67 ms
9,600 KB
testcase_68 AC 100 ms
14,720 KB
testcase_69 AC 66 ms
8,960 KB
testcase_70 AC 156 ms
14,080 KB
testcase_71 AC 108 ms
11,136 KB
testcase_72 AC 179 ms
13,824 KB
testcase_73 AC 225 ms
11,136 KB
testcase_74 AC 120 ms
9,216 KB
testcase_75 AC 122 ms
11,264 KB
testcase_76 AC 103 ms
10,752 KB
testcase_77 AC 118 ms
10,240 KB
testcase_78 AC 122 ms
11,648 KB
testcase_79 AC 286 ms
13,952 KB
testcase_80 AC 158 ms
14,336 KB
testcase_81 AC 116 ms
9,856 KB
testcase_82 AC 148 ms
10,624 KB
testcase_83 AC 150 ms
13,824 KB
testcase_84 AC 107 ms
10,880 KB
testcase_85 AC 201 ms
13,824 KB
testcase_86 AC 129 ms
11,008 KB
testcase_87 AC 170 ms
12,544 KB
testcase_88 AC 115 ms
9,856 KB
testcase_89 AC 137 ms
13,312 KB
testcase_90 AC 178 ms
14,976 KB
testcase_91 AC 185 ms
14,976 KB
testcase_92 AC 181 ms
14,976 KB
testcase_93 AC 189 ms
14,976 KB
testcase_94 AC 203 ms
14,976 KB
testcase_95 AC 187 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr ll LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
  }
} iosetup;

std::vector<int> euler_phi_init(int val) {
  std::vector<int> phi(val + 1);
  for (int i = 0; i <= val; ++i) phi[i] = i;
  for (int i = 2; i <= val; ++i) {
    if (phi[i] == i) {
      for (int j = i; j <= val; j += i) phi[j] -= phi[j] / i;
    }
  }
  return phi;
}

int main() {
  int n, m; cin >> n >> m;
  // https://oeis.org/A006579
  vector<int> phi = euler_phi_init(n);
  vector<ll> s(n + 1, 0);
  FOR(i, 2, n + 1) for (int j = i; j <= n; j += i) s[j] += 1LL * (i - 1) * phi[j / i];
  // REP(a, n + 1) {
  //   ll sum = 0;
  //   FOR(b, 1, a + 1) {
  //     int mn = a - 1, y = (a - 1 - b + a) % a;
  //     while (y != a - 1) {
  //       chmin(mn, y);
  //       y = (y - b + a) % a;
  //     }
  //     sum += mn;
  //   }
  //   cout << sum << " \n"[a == n];
  // }
  ll ans = 0;
  while (m--) {
    int a; cin >> a;
    ans += s[a];
  }
  cout << ans << '\n';
  return 0;
}
0