結果

問題 No.1233 割り切れない気持ち
ユーザー QCFiumQCFium
提出日時 2019-07-31 02:07:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 867 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 167,804 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 16:33:17
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 18 ms
6,940 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 20 ms
6,944 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 2 ms
6,940 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* RE/WA expected */
#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[(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