結果

問題 No.1036 Make One With GCD 2
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-03-30 16:12:31
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 784 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 163,836 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-09-30 17:34:18
合計ジャッジ時間 17,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
15,232 KB
testcase_01 AC 286 ms
15,360 KB
testcase_02 AC 418 ms
15,232 KB
testcase_03 AC 30 ms
8,576 KB
testcase_04 AC 51 ms
13,952 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 264 ms
15,104 KB
testcase_10 AC 251 ms
14,848 KB
testcase_11 AC 271 ms
15,360 KB
testcase_12 AC 245 ms
14,848 KB
testcase_13 AC 436 ms
14,976 KB
testcase_14 AC 442 ms
15,232 KB
testcase_15 AC 439 ms
14,848 KB
testcase_16 AC 420 ms
14,848 KB
testcase_17 AC 431 ms
14,976 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 409 ms
14,848 KB
testcase_23 AC 304 ms
13,952 KB
testcase_24 AC 428 ms
14,976 KB
testcase_25 AC 387 ms
14,720 KB
testcase_26 AC 402 ms
14,848 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 374 ms
15,360 KB
testcase_39 AC 410 ms
15,232 KB
testcase_40 AC 301 ms
13,952 KB
testcase_41 AC 476 ms
15,232 KB
testcase_42 AC 474 ms
15,232 KB
testcase_43 AC 474 ms
15,232 KB
testcase_44 AC 478 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
using ll = long long;
ll op(ll a, ll b) {return gcd(a, b);}
ll e() {return 0LL;}
int main() {
	int N;cin >> N;
	vector<ll> A(N + 1, 0);
	for (int i = 1;i <= N;i++) cin >> A[i];
	int r = -1;
	ll ans = 0;
	segtree<ll, op, e> seg(A);
	for (int i = 1;i <= N;i++) {
		if (r == -1 or r == i - 1) {
			ll g = 0;
			for (int k = i;k <= N;k++) {
				if (gcd(g, A[k]) == 1) break;
				g = gcd(g, A[k]);
				r = k;		
			}
			if (r == -1) {
				ans += N - i + 1;
			} else {
				ans += N - r;
			}
			continue;
		}
		ll now = seg.prod(i, r + 1);
		for (int k = r + 1;k <= N;k++) {
			if (gcd(A[k], now) == 1) break;
			r = k;
			now = gcd(now, A[k]);
		}
		ans += N - r;
	}
	cout << ans << endl;
}
0