結果

問題 No.1036 Make One With GCD 2
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-31 09:10:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 715 bytes
コンパイル時間 6,090 ms
コンパイル使用メモリ 310,088 KB
実行使用メモリ 15,532 KB
最終ジャッジ日時 2024-08-31 09:11:54
合計ジャッジ時間 59,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,572 ms
15,260 KB
testcase_02 AC 388 ms
15,444 KB
testcase_03 AC 303 ms
8,896 KB
testcase_04 AC 606 ms
14,068 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 557 ms
8,976 KB
testcase_08 AC 444 ms
8,812 KB
testcase_09 AC 1,596 ms
15,332 KB
testcase_10 AC 1,460 ms
15,052 KB
testcase_11 AC 1,587 ms
15,392 KB
testcase_12 AC 1,480 ms
15,036 KB
testcase_13 AC 1,995 ms
15,284 KB
testcase_14 TLE -
testcase_15 AC 1,857 ms
14,884 KB
testcase_16 AC 1,941 ms
15,036 KB
testcase_17 AC 1,936 ms
15,036 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 1,859 ms
15,044 KB
testcase_23 AC 1,318 ms
14,136 KB
testcase_24 AC 1,924 ms
15,116 KB
testcase_25 AC 1,755 ms
14,656 KB
testcase_26 AC 1,800 ms
14,984 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,940 KB
testcase_31 AC 2 ms
6,940 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 1 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 365 ms
15,372 KB
testcase_39 TLE -
testcase_40 AC 1,329 ms
14,048 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
    for (int i = 0; i < n; i++) {
        if (st.prod(i, n) != 1)
            break;
        int l = i, r = n;
        while (r - l > 1) {
            int m = (l + r) / 2;
            if (st.prod(i, m) == 1)
                r = m;
            else
                l = m;
        }
        ans += n - r + 1;
    }
    cout << ans << endl;
}
0