結果

問題 No.2956 Substitute with Average
ユーザー startcppstartcpp
提出日時 2024-10-23 23:21:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 66,884 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-25 19:45:19
合計ジャッジ時間 4,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 164 ms
6,816 KB
testcase_20 AC 163 ms
6,816 KB
testcase_21 AC 164 ms
6,816 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 165 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//嘘解法.cpp
//ランダムに整数を配置すると、長さが大きな区間が整数になることが少ないはず
//という思想に従って、一定区間長まで調べる方法を実装してみました。
//解説の前半の考察まではしていて、実装をサボったパターン。
#include <iostream>
#include <vector>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;

int n;
int a[150000], ra[150001];

signed main() {
	int i, j;

	cin >> n;
	rep(i, n) cin >> a[i];
	rep(i, n) ra[i + 1] = ra[i] + a[i];

	int ans = n * (n - 1) / 2 + 1;
	
	for (i = 2; i <= min(n, 1000LL); i++) {
		for (j = 0; j + i <= n; j++) { //区間[j, j + i)を確認
			if (i * a[j] == ra[j + i] - ra[j]) ans--;
			else if (i * a[j + i - 1] == ra[j + i] - ra[j]) ans--;
		}
	}

	cout << ans << endl;
	return 0;
}
0