結果

問題 No.1514 Squared Matching
ユーザー umezoumezo
提出日時 2021-05-22 00:54:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,929 ms / 4,000 ms
コード長 725 bytes
コンパイル時間 2,460 ms
コンパイル使用メモリ 204,276 KB
実行使用メモリ 393,904 KB
最終ジャッジ日時 2024-10-10 10:35:16
合計ジャッジ時間 47,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,194 ms
198,500 KB
testcase_01 AC 1,877 ms
393,904 KB
testcase_02 AC 1,194 ms
198,532 KB
testcase_03 AC 1,210 ms
198,508 KB
testcase_04 AC 1,191 ms
198,528 KB
testcase_05 AC 1,197 ms
198,564 KB
testcase_06 AC 1,215 ms
201,480 KB
testcase_07 AC 1,339 ms
235,772 KB
testcase_08 AC 1,851 ms
386,836 KB
testcase_09 AC 1,759 ms
363,256 KB
testcase_10 AC 1,793 ms
376,764 KB
testcase_11 AC 1,827 ms
384,352 KB
testcase_12 AC 1,876 ms
389,416 KB
testcase_13 AC 1,880 ms
391,904 KB
testcase_14 AC 1,866 ms
393,104 KB
testcase_15 AC 1,859 ms
393,444 KB
testcase_16 AC 1,856 ms
393,816 KB
testcase_17 AC 1,929 ms
393,772 KB
testcase_18 AC 1,863 ms
393,844 KB
testcase_19 AC 1,862 ms
393,812 KB
testcase_20 AC 1,874 ms
393,824 KB
testcase_21 AC 1,875 ms
393,796 KB
testcase_22 AC 1,345 ms
237,532 KB
testcase_23 AC 1,485 ms
276,632 KB
testcase_24 AC 1,615 ms
315,700 KB
testcase_25 AC 1,742 ms
354,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int B[50000010];

int main(){
  int n;
  cin>>n;
  
  int MAX=50000010;
  vector<int> prime(MAX,1);
  prime[0]=0,prime[1]=0;
  for(int i=2;i*i<=MAX;i++){
    if(!prime[i]) continue;
    for(int j=2*i;j<=MAX;j+=i) prime[j]=0;
  }
  vector<int> A;
  for(int i=1;i*i<=n;i++){
    if(prime[i]) A.push_back(i);
  }
  
  rep(i,n+1) B[i]=i;
  for(auto p:A){
    int q=p*p;
    int r=q;
    while(1){
      for(int i=q;i<=n;i+=q) B[i]/=r;
      if(q>n/r) break;
      q*=r;
    }
  }

  int ans=0;
  for(int i=1;i<=n;i++) ans+=sqrt(n/B[i]);
  cout<<ans<<endl;
  
  return 0;
}
0