結果

問題 No.1036 Make One With GCD 2
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-31 09:15:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 6,275 ms
コンパイル使用メモリ 310,168 KB
実行使用メモリ 15,504 KB
最終ジャッジ日時 2024-08-31 09:15:56
合計ジャッジ時間 20,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 471 ms
15,504 KB
testcase_01 AC 267 ms
15,500 KB
testcase_02 AC 445 ms
15,252 KB
testcase_03 AC 34 ms
8,772 KB
testcase_04 AC 58 ms
13,928 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 102 ms
9,088 KB
testcase_08 AC 87 ms
8,744 KB
testcase_09 AC 281 ms
15,304 KB
testcase_10 AC 272 ms
15,084 KB
testcase_11 AC 285 ms
15,304 KB
testcase_12 AC 264 ms
15,088 KB
testcase_13 AC 464 ms
15,240 KB
testcase_14 AC 492 ms
15,172 KB
testcase_15 AC 437 ms
14,948 KB
testcase_16 AC 460 ms
14,932 KB
testcase_17 AC 457 ms
15,188 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 441 ms
14,980 KB
testcase_23 AC 323 ms
14,048 KB
testcase_24 AC 446 ms
15,144 KB
testcase_25 AC 418 ms
14,848 KB
testcase_26 AC 424 ms
14,784 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 434 ms
15,372 KB
testcase_39 AC 480 ms
15,404 KB
testcase_40 AC 320 ms
13,912 KB
testcase_41 AC 548 ms
15,364 KB
testcase_42 AC 532 ms
15,432 KB
testcase_43 AC 543 ms
15,392 KB
testcase_44 AC 580 ms
15,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

ll op(ll a, ll b) { return gcd(a, b); }
ll e() { return 0; }

int main() {
    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i, 0, n) cin >> a[i];
    segtree<ll, op, e> st(a);
    ll ans = 0;
    int ri = 0;
    for (int i = 0; i < n; i++) {
        while (ri < n && st.prod(i, ri + 1) != 1)
            ri++;
        ans += n - ri;
    }
    cout << ans << endl;
}
0