結果

問題 No.1036 Make One With GCD 2
ユーザー merom686merom686
提出日時 2020-04-24 22:34:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,465 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 91,360 KB
実行使用メモリ 9,212 KB
最終ジャッジ日時 2024-11-07 02:46:03
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 12 ms
8,960 KB
testcase_03 AC 16 ms
5,248 KB
testcase_04 AC 26 ms
7,040 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 197 ms
8,960 KB
testcase_10 AC 183 ms
8,544 KB
testcase_11 AC 200 ms
9,064 KB
testcase_12 AC 186 ms
8,576 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

ll gcd(ll n, ll m) {
    if (n < m) swap(n, m);
    while (m != 0) {
        ll r = n % m;
        n = m;
        m = r;
    }
    return n;
}

template <class T>
struct SWAG {
    SWAG(int n) : t(n), s(), i0(0), i1(0), i2(0) {}
    void push(const T &o) {
        t[i2++] = o;
        s = s * o;
    }
    void pop() {
        if (i0 == i1) {
            i1 = i2;
            for (int i = i1 - 2; i > i0; i--) {
                t[i] = t[i] * t[i + 1];
            }
            s = T();
        }
        i0++;
    }
    T fold_all() {
        return i0 == i1 ? s : t[i0] * s;
    }
    vector<T> t;
    T s;
    int i0, i1, i2;
};

struct Node {
    constexpr Node() : a(0) {}
    Node(ll a) : a(a) {}
    Node operator*(const Node &o) const {
        return Node(gcd(a, o.a));
    }
    ll a;
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    SWAG<Node> sw(n);
    ll r = 0;

    for (int i0 = 0, i1 = 0; i0 < n; i0++) {
        while (i1 < n && sw.fold_all().a != 1) {
            sw.push(Node(a[i1++]));
        }
        if (i1 == n && sw.fold_all().a != 1) i1++;
        r += n - i1 + 1;
        sw.pop();
    }

    cout << r << endl;

    return 0;
}
0