結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 42 ms
6,940 KB
testcase_08 AC 71 ms
6,944 KB
testcase_09 AC 125 ms
6,944 KB
testcase_10 AC 139 ms
6,944 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 154 ms
6,940 KB
testcase_13 AC 158 ms
6,940 KB
testcase_14 AC 153 ms
6,940 KB
testcase_15 AC 150 ms
6,940 KB
testcase_16 AC 159 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 236 ms
6,940 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 182 ms
6,940 KB
testcase_22 AC 156 ms
6,944 KB
testcase_23 AC 129 ms
6,944 KB
testcase_24 AC 120 ms
6,940 KB
testcase_25 AC 105 ms
6,940 KB
testcase_26 AC 96 ms
6,944 KB
testcase_27 AC 83 ms
6,944 KB
testcase_28 AC 78 ms
6,940 KB
testcase_29 AC 71 ms
6,944 KB
testcase_30 AC 68 ms
6,944 KB
testcase_31 AC 65 ms
6,940 KB
testcase_32 AC 59 ms
6,944 KB
testcase_33 AC 56 ms
6,944 KB
testcase_34 AC 54 ms
6,944 KB
testcase_35 AC 52 ms
6,940 KB
testcase_36 AC 49 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 117 ms
6,940 KB
testcase_40 AC 119 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

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

int n;
int a[200000];

int read_uint() {
	int res = 0;
	for (int i = 0; ; i++) {
		int c = getchar();
		if (c < '0' || c > '9') {
			assert(i);
			ungetc(c, stdin);
			break;
		}
		res *= 10;
		res += c - '0';
	}
	return res;
}

void expect_nl() {
	int lb = getchar();
	if (lb == '\r') lb = getchar();
	assert(lb == '\n');
}

void input() {
	n = read_uint();
	expect_nl();
	for (int i = 0; i < n; i++) {
		a[i] = read_uint();
		if (i + 1 < n) assert(getchar() == ' ');
	}
	int c = getchar();
	if (c == '\r') assert(getchar() == '\n');
	assert(c == EOF || getchar() == EOF);
}

int main() {
	input();
	assert(1 <= n && n <= 200000);
	int num_sum[200001] = { 0 };
	for (int i = 0; i < n; i++) assert(1 <= a[i] && a[i] <= 200000), 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