結果

問題 No.1233 割り切れない気持ち
ユーザー ianCKianCK
提出日時 2020-09-23 17:23:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,619 ms / 3,153 ms
コード長 642 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-27 22:49:48
合計ジャッジ時間 109,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,523 ms
5,248 KB
testcase_01 AC 2,514 ms
5,376 KB
testcase_02 AC 2,521 ms
5,376 KB
testcase_03 AC 2,526 ms
5,376 KB
testcase_04 AC 2,518 ms
5,376 KB
testcase_05 AC 2,518 ms
5,376 KB
testcase_06 AC 2,514 ms
5,376 KB
testcase_07 AC 2,525 ms
5,376 KB
testcase_08 AC 2,526 ms
5,760 KB
testcase_09 AC 2,536 ms
6,656 KB
testcase_10 AC 2,550 ms
6,656 KB
testcase_11 AC 2,539 ms
5,376 KB
testcase_12 AC 2,543 ms
6,912 KB
testcase_13 AC 2,544 ms
6,912 KB
testcase_14 AC 2,543 ms
6,912 KB
testcase_15 AC 2,542 ms
7,040 KB
testcase_16 AC 2,547 ms
7,040 KB
testcase_17 AC 2,545 ms
5,376 KB
testcase_18 AC 2,548 ms
7,040 KB
testcase_19 AC 2,543 ms
5,376 KB
testcase_20 AC 2,619 ms
5,504 KB
testcase_21 AC 2,537 ms
5,376 KB
testcase_22 AC 2,550 ms
5,376 KB
testcase_23 AC 2,545 ms
5,376 KB
testcase_24 AC 2,541 ms
5,376 KB
testcase_25 AC 2,537 ms
5,504 KB
testcase_26 AC 2,538 ms
5,376 KB
testcase_27 AC 2,533 ms
6,144 KB
testcase_28 AC 2,546 ms
6,272 KB
testcase_29 AC 2,544 ms
6,016 KB
testcase_30 AC 2,547 ms
6,016 KB
testcase_31 AC 2,540 ms
5,888 KB
testcase_32 AC 2,536 ms
5,888 KB
testcase_33 AC 2,534 ms
5,888 KB
testcase_34 AC 2,536 ms
5,888 KB
testcase_35 AC 2,541 ms
5,888 KB
testcase_36 AC 2,538 ms
5,888 KB
testcase_37 AC 2,516 ms
5,376 KB
testcase_38 AC 2,527 ms
5,376 KB
testcase_39 AC 2,533 ms
6,912 KB
testcase_40 AC 2,537 ms
6,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:13:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
      |                                      ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

typedef long long int ll;
constexpr int kN = int(2E5 + 10);

int a[kN];
ll s[kN], cnt[kN], ss[kN];

int main() {
	int n, tmp, nxt;
	ll ans = 0;
	scanf("%d", &n);
	for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
	for (int i = 1; i <= n; i++) cnt[a[i]]++;
	for (int i = 1; i < kN; i++) s[i] = s[i - 1] + cnt[i];
	for (int i = 1; i < kN; i++) ss[i] = ss[i - 1] + i * cnt[i];
	for (int i = 1; i < kN; i++) {
		for (int j = 1; j <= i; j = nxt + 1) {
			tmp = i / j;
			nxt = i / tmp;
			ans -= tmp * cnt[i] * (ss[nxt] - ss[j - 1]);
		}
	}
	for (int i = 1; i < kN; i++) ans += s[kN - 1] * i * cnt[i];
	printf("%lld\n", ans);
}
0