結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー kazuppakazuppa
提出日時 2024-08-17 20:24:08
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 558 bytes
コンパイル時間 3,895 ms
コンパイル使用メモリ 278,556 KB
実行使用メモリ 22,056 KB
最終ジャッジ日時 2024-10-18 20:50:09
合計ジャッジ時間 8,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,824 KB
testcase_16 AC 2 ms
6,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
6,820 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
08_evil_01.txt RE -
08_evil_02.txt RE -
08_evil_03.txt RE -
08_evil_04.txt RE -
08_evil_05.txt RE -
08_evil_06.txt RE -
08_evil_07.txt RE -
08_evil_08.txt RE -
08_evil_09.txt RE -
08_evil_10.txt RE -
08_evil_11.txt RE -
08_evil_12.txt RE -
08_evil_13.txt RE -
08_evil_14.txt RE -
08_evil_15.txt RE -
08_evil_16.txt RE -
08_evil_17.txt RE -
08_evil_18.txt RE -
08_evil_19.txt RE -
08_evil_20.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int N;ll ans=0;cin>>N;
  vector<pair<int,int>> yak(N+1);
  for(int i=1;i<=N;i++)yak[i]={i,1};
  for(int i=2;i<=N;i++){
    if(yak[i].first==1)continue;
    for(int j=i;j<=N;j+=i){
      int mae=yak[j].second;
      while(yak[j].first%i==0){
        yak[j].second+=mae;
        yak[j].first/=i;
      }
    }
  }
  vector<ll> rui(N+1);
  for(int i=1;i<=N;i++)rui[i]=yak[i].second;
  for(int i=1;i<=N;i++)rui[i]+=rui[i-1];
  for(int i=1;i<=N;i++)ans+=rui[i];
  cout<<ans<<endl;
}
0