結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,483 ms
15,232 KB
testcase_02 AC 1,602 ms
15,360 KB
testcase_03 AC 30 ms
8,576 KB
testcase_04 AC 52 ms
13,952 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 383 ms
8,832 KB
testcase_08 AC 309 ms
8,576 KB
testcase_09 AC 1,376 ms
15,232 KB
testcase_10 AC 1,276 ms
14,848 KB
testcase_11 AC 1,412 ms
15,360 KB
testcase_12 AC 1,322 ms
14,848 KB
testcase_13 TLE -
testcase_14 AC 1,859 ms
15,104 KB
testcase_15 AC 1,722 ms
14,848 KB
testcase_16 AC 1,734 ms
14,848 KB
testcase_17 AC 1,799 ms
14,976 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 1,693 ms
14,848 KB
testcase_23 AC 1,207 ms
13,952 KB
testcase_24 AC 1,793 ms
14,976 KB
testcase_25 AC 1,599 ms
14,720 KB
testcase_26 AC 1,664 ms
14,848 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 1,587 ms
15,360 KB
testcase_39 TLE -
testcase_40 AC 1,215 ms
13,824 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

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];
	segtree<ll, op,  e> seg(A);
	ll ans = 0;
	for (int i = 1;i <= N;i++) {
		int ok = i;
		int ng = N  +1;
		if (A[i] == 1) {
			ans += N - i + 1;continue;
		}
		while (ng - ok > 1) {
			int m = (ok + ng) / 2;
			ll g = seg.prod(i, m + 1);
			if (g == 1) {
				ng = m;
			} else {
				ok = m;
			}
		}
		if (ok == i) {
			ans += N - i;
		} else {
			ans += N - ok;
		}
		
	}
	cout << ans << endl;
}
0