結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 rin204rin204
提出日時 2022-07-09 15:39:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 204,420 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-09 22:08:44
合計ジャッジ時間 10,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 65 ms
9,296 KB
testcase_03 AC 17 ms
6,144 KB
testcase_04 AC 29 ms
8,576 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 189 ms
9,344 KB
testcase_10 AC 174 ms
9,136 KB
testcase_11 AC 189 ms
9,236 KB
testcase_12 AC 177 ms
9,088 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
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 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<bits/stdc++.h>
#include<atcoder/segtree>
using namespace std;
using namespace atcoder;

using S = int;
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<int> A(n);
    for(int i = 0; i < n; i++) cin >> A[i];
    segtree<S, op, e> seg(A);
    long long ans = 0;
    for(int r = 1; r <= n; r++){
        int l = seg.min_left(r, f);
        ans += l;
    }
    cout << ans << "\n";
}

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