結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 rin204rin204
提出日時 2022-07-09 15:50:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 776 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 204,964 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-06-09 22:25:04
合計ジャッジ時間 13,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
15,360 KB
testcase_01 AC 91 ms
15,360 KB
testcase_02 AC 179 ms
15,360 KB
testcase_03 AC 18 ms
8,832 KB
testcase_04 AC 33 ms
13,824 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 30 ms
8,960 KB
testcase_08 AC 25 ms
8,704 KB
testcase_09 AC 191 ms
15,232 KB
testcase_10 AC 180 ms
14,976 KB
testcase_11 AC 197 ms
15,360 KB
testcase_12 AC 181 ms
14,976 KB
testcase_13 AC 320 ms
15,104 KB
testcase_14 AC 321 ms
15,232 KB
testcase_15 AC 300 ms
14,976 KB
testcase_16 AC 303 ms
14,976 KB
testcase_17 AC 308 ms
15,104 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 298 ms
14,848 KB
testcase_23 AC 225 ms
13,952 KB
testcase_24 AC 306 ms
14,976 KB
testcase_25 AC 296 ms
14,720 KB
testcase_26 AC 298 ms
14,848 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 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 252 ms
15,360 KB
testcase_39 AC 776 ms
15,232 KB
testcase_40 AC 218 ms
13,952 KB
testcase_41 AC 671 ms
15,360 KB
testcase_42 AC 589 ms
15,232 KB
testcase_43 AC 605 ms
15,360 KB
testcase_44 AC 596 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
using namespace atcoder;

using S = long long;
S op(S x, S y){
    if(x > y) swap(x, y);
    if(x == 0) return y;
    return op(y % x, x);
}

S e(){ return 0; }

bool f(S x){
    return x != 1;
}

void solve(){
    int n;
    cin >> n;
    vector<long long> A(n);
    for(int i = 0; i < n; i++) cin >> A[i];
    segtree<S, op, e> seg(A);
    long long ans = 0;
    int l = 0;
    for(int r = 1; r <= n; r++){
        while(l < r){
            auto x = seg.prod(l, r);
            if(x != 1) break;
            l++;
        }
        ans += l;
    }
    cout << ans << "\n";
}

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    t = 1;
    //cin >> t;
    while(t--) solve();
}
0