結果

問題 No.1262 グラフを作ろう!
ユーザー kiyoshi0205kiyoshi0205
提出日時 2020-10-16 23:45:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,439 bytes
コンパイル時間 2,695 ms
コンパイル使用メモリ 183,308 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-07-21 00:58:32
合計ジャッジ時間 14,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 2,945 ms
124,800 KB
testcase_05 TLE -
testcase_06 AC 2,940 ms
125,440 KB
testcase_07 AC 2,934 ms
122,240 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,888 ms
124,288 KB
testcase_23 AC 2,948 ms
122,368 KB
testcase_24 TLE -
testcase_25 AC 2,860 ms
123,216 KB
testcase_26 AC 2,930 ms
123,520 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2,878 ms
124,672 KB
testcase_30 AC 2,964 ms
123,264 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2,913 ms
122,112 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 2,950 ms
121,984 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2,978 ms
122,240 KB
testcase_40 TLE -
testcase_41 AC 2,960 ms
124,800 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 2,968 ms
125,568 KB
testcase_47 AC 2,955 ms
121,960 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 2,922 ms
125,056 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 2,967 ms
124,288 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 AC 2,989 ms
124,376 KB
testcase_60 TLE -
testcase_61 AC 2,969 ms
122,744 KB
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 2,887 ms
123,100 KB
testcase_66 AC 2,940 ms
122,880 KB
testcase_67 AC 2,955 ms
123,356 KB
testcase_68 AC 2,858 ms
125,184 KB
testcase_69 TLE -
testcase_70 TLE -
testcase_71 AC 2,902 ms
122,496 KB
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 2,946 ms
122,240 KB
testcase_76 AC 2,973 ms
122,080 KB
testcase_77 AC 2,905 ms
121,984 KB
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 AC 2,869 ms
121,984 KB
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 2,980 ms
121,728 KB
testcase_93 TLE -
testcase_94 AC 2,966 ms
121,676 KB
testcase_95 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
// #include<ext/pb_ds/assoc_container.hpp>
// #include<ext/pb_ds/tree_policy.hpp>
// #include<ext/pb_ds/tag_and_trait.hpp>
// using namespace __gnu_pbds;
// #include<boost/multiprecision/cpp_int.hpp>
// namespace multiprecisioninteger = boost::multiprecision;
// using cint=multiprecisioninteger::cpp_int;
using namespace std;
using ll=long long;
#define double long double
using datas=pair<ll,ll>;
using ddatas=pair<double,double>;
using tdata=pair<ll,datas>;
using vec=vector<ll>;
using mat=vector<vec>;
using pvec=vector<datas>;
using pmat=vector<pvec>;
// using llset=tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>;
#define For(i,a,b) for(i=a;i<(ll)b;++i)
#define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i)
#define rep(i,N) For(i,0,N)
#define rep1(i,N) For(i,1,N)
#define brep(i,N) bFor(i,N,0)
#define brep1(i,N) bFor(i,N,1)
#define all(v) (v).begin(),(v).end()
#define allr(v) (v).rbegin(),(v).rend()
#define vsort(v) sort(all(v))
#define vrsort(v) sort(allr(v))
#define endl "\n"
#define eb emplace_back
#define print(x) cout<<x<<endl
#define printyes print("Yes")
#define printno print("No")
#define printYES print("YES")
#define printNO print("NO")
#define output(v) do{bool f=0;for(auto outi:v){cout<<(f?" ":"")<<outi;f=1;}cout<<endl;}while(0)
#define matoutput(v) do{for(auto outimat:v)output(outimat);}while(0)
const ll mod=1000000007;
// const ll mod=998244353;
const ll inf=1LL<<60;
const double PI=acos(-1);
const double eps=1e-9;
template<class T,class E> ostream& operator<<(ostream& os,pair<T,E>& p){return os<<"{"<<p.first<<","<<p.second<<"}";}
template<class T> inline bool chmax(T& a,T b){bool x=a<b;if(x)a=b;return x;}
template<class T> inline bool chmin(T& a,T b){bool x=a>b;if(x)a=b;return x;}

void startupcpp(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  // cout<<fixed<<setprecision(15);
}

int M,phi[1000001],lis[10000001];
ll ans;
vector<int> divisor[1000001];
int main(){
  startupcpp();
  int i,j;
  for(i=1;i<1000001;++i){
    phi[i]=i-phi[i];
    for(j=i;j<1000001;j+=i){
      divisor[j].eb(i);
      if(j!=i)phi[j]+=phi[i];
    }
  }
  cin>>M>>M;
  while(M--){
    cin>>i;
    // ans=0;
    if(lis[i]){
      ans+=lis[i];
      continue;
    }
    for(auto d:divisor[i]){
      lis[i]+=(i-1)%d*phi[i/d];
    }
    ans+=lis[i];
    // print(ans);
  }
  print(ans);
}
0