結果

問題 No.1036 Make One With GCD 2
ユーザー merom686merom686
提出日時 2020-04-24 22:36:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,433 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 89,448 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-16 13:23:36
合計ジャッジ時間 9,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
7,168 KB
testcase_01 AC 68 ms
7,168 KB
testcase_02 AC 98 ms
7,040 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 20 ms
5,632 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 27 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 185 ms
7,040 KB
testcase_10 AC 171 ms
6,656 KB
testcase_11 AC 189 ms
7,168 KB
testcase_12 AC 181 ms
6,784 KB
testcase_13 AC 320 ms
6,784 KB
testcase_14 AC 329 ms
6,912 KB
testcase_15 AC 308 ms
6,784 KB
testcase_16 AC 299 ms
6,784 KB
testcase_17 AC 314 ms
6,912 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 292 ms
6,656 KB
testcase_23 AC 218 ms
5,632 KB
testcase_24 AC 302 ms
6,912 KB
testcase_25 AC 279 ms
6,528 KB
testcase_26 AC 287 ms
6,528 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 99 ms
7,040 KB
testcase_39 AC 105 ms
7,168 KB
testcase_40 AC 226 ms
5,760 KB
testcase_41 AC 263 ms
7,040 KB
testcase_42 AC 263 ms
7,168 KB
testcase_43 AC 224 ms
7,168 KB
testcase_44 AC 248 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

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;

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

    for (int i0 = 0, i1 = 0; i0 < n; i0++) {
        while (i1 < n && sw.fold_all().a != 1) {
            ll a;
            cin >> a;
            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