結果

問題 No.1233 割り切れない気持ち
ユーザー QCFiumQCFium
提出日時 2019-07-31 01:19:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 3,153 ms
コード長 864 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 167,304 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 19:09:54
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 49 ms
6,940 KB
testcase_08 AC 78 ms
6,944 KB
testcase_09 AC 133 ms
6,944 KB
testcase_10 AC 153 ms
6,944 KB
testcase_11 AC 41 ms
6,940 KB
testcase_12 AC 164 ms
6,940 KB
testcase_13 AC 168 ms
6,944 KB
testcase_14 AC 163 ms
6,940 KB
testcase_15 AC 167 ms
6,940 KB
testcase_16 AC 175 ms
6,940 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 240 ms
6,944 KB
testcase_19 AC 25 ms
6,940 KB
testcase_20 AC 19 ms
6,940 KB
testcase_21 AC 198 ms
6,940 KB
testcase_22 AC 168 ms
6,940 KB
testcase_23 AC 143 ms
6,940 KB
testcase_24 AC 133 ms
6,940 KB
testcase_25 AC 123 ms
6,940 KB
testcase_26 AC 110 ms
6,940 KB
testcase_27 AC 103 ms
6,940 KB
testcase_28 AC 98 ms
6,940 KB
testcase_29 AC 92 ms
6,944 KB
testcase_30 AC 85 ms
6,940 KB
testcase_31 AC 77 ms
6,940 KB
testcase_32 AC 74 ms
6,940 KB
testcase_33 AC 72 ms
6,940 KB
testcase_34 AC 67 ms
6,940 KB
testcase_35 AC 65 ms
6,944 KB
testcase_36 AC 62 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 18 ms
6,944 KB
testcase_39 AC 130 ms
6,944 KB
testcase_40 AC 130 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int main() {
	int n = ri();
	int a[n];
	int num_sum[200001] = { 0 };
	for (int i = 0; i < n; i++) a[i] = ri(), num_sum[a[i]]++;
	int64_t sum = std::accumulate(a, a + n, 0LL);
	for (int i = 0; i < 200000; i++) num_sum[i + 1] += num_sum[i];
	
	int64_t cache[400];
	for (int i = 0; i < 400; i++) cache[i] = -1;
	int64_t res = 0;
	for (int i = 0; i < n; i++) {
		if (a[i] < 400) {
			if (cache[a[i]] == -1) {
				cache[a[i]] = 0;
				for (int j = 0; j < n; j++) cache[a[i]] += a[j] % a[i];
			}
			res += cache[a[i]];
		} else {
			res += sum;
			for (int j = 0; j <= 200000 / a[i]; j++) {
				int num = num_sum[std::min(200000, (j + 1) * a[i] - 1)];
				if (j) num -= num_sum[j * a[i] - 1];
				res -= (int64_t) a[i] * j * num;
			}
		}
	}
	std::cout << res << std::endl;
	
    return 0;
}
0