結果

問題 No.1233 割り切れない気持ち
ユーザー furafura
提出日時 2020-10-04 16:51:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 612 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 204,984 KB
実行使用メモリ 15,776 KB
最終ジャッジ日時 2024-07-19 17:30:51
合計ジャッジ時間 10,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 35 ms
7,808 KB
testcase_10 AC 37 ms
8,192 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 43 ms
8,832 KB
testcase_13 AC 42 ms
8,832 KB
testcase_14 AC 43 ms
8,832 KB
testcase_15 AC 42 ms
8,832 KB
testcase_16 AC 45 ms
8,832 KB
testcase_17 AC 21 ms
6,940 KB
testcase_18 AC 42 ms
8,832 KB
testcase_19 AC 31 ms
8,832 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 23 ms
6,940 KB
testcase_22 AC 23 ms
6,944 KB
testcase_23 AC 23 ms
6,944 KB
testcase_24 AC 23 ms
6,944 KB
testcase_25 AC 23 ms
6,940 KB
testcase_26 AC 24 ms
6,940 KB
testcase_27 AC 184 ms
8,832 KB
testcase_28 AC 160 ms
8,832 KB
testcase_29 AC 154 ms
8,832 KB
testcase_30 AC 141 ms
8,832 KB
testcase_31 AC 129 ms
8,832 KB
testcase_32 AC 126 ms
8,832 KB
testcase_33 AC 115 ms
8,832 KB
testcase_34 AC 111 ms
8,832 KB
testcase_35 AC 103 ms
8,704 KB
testcase_36 AC 98 ms
8,960 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n; scanf("%d",&n);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	int amax=*max_element(a.begin(),a.end());

	vector<lint> freq(amax+1);
	rep(i,n) freq[a[i]]++;

	vector<lint> sum1(amax+1),sum2(amax+1);
	for(int x=1;x<=amax;x++){
		sum1[x]=sum1[x-1]+freq[x];
		sum2[x]=sum2[x-1]+x*freq[x];
	}

	lint ans=0;
	for(int y:a){
		for(int q=0;q*y<=amax;q++){
			int l=q*y,r=min((q+1)*y-1,amax);
			ans+=(sum2[r]-sum2[l])-q*y*(sum1[r]-sum1[l]);
		}
	}
	printf("%lld\n",ans);

	return 0;
}
0