結果

問題 No.1036 Make One With GCD 2
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-20 20:39:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 5,224 ms
コンパイル使用メモリ 309,240 KB
実行使用メモリ 15,372 KB
最終ジャッジ日時 2024-07-06 15:28:02
合計ジャッジ時間 25,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,105 ms
15,328 KB
testcase_01 AC 350 ms
15,348 KB
testcase_02 AC 477 ms
15,260 KB
testcase_03 AC 58 ms
8,736 KB
testcase_04 AC 99 ms
13,976 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 138 ms
8,960 KB
testcase_08 AC 113 ms
8,704 KB
testcase_09 AC 373 ms
15,232 KB
testcase_10 AC 347 ms
14,996 KB
testcase_11 AC 380 ms
15,360 KB
testcase_12 AC 354 ms
15,104 KB
testcase_13 AC 577 ms
15,104 KB
testcase_14 AC 578 ms
15,232 KB
testcase_15 AC 546 ms
14,976 KB
testcase_16 AC 552 ms
14,968 KB
testcase_17 AC 566 ms
15,160 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 539 ms
14,976 KB
testcase_23 AC 397 ms
14,004 KB
testcase_24 AC 562 ms
15,016 KB
testcase_25 AC 510 ms
14,688 KB
testcase_26 AC 525 ms
14,976 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 461 ms
15,372 KB
testcase_39 AC 975 ms
15,356 KB
testcase_40 AC 398 ms
13,968 KB
testcase_41 AC 827 ms
15,356 KB
testcase_42 AC 803 ms
15,252 KB
testcase_43 AC 853 ms
15,360 KB
testcase_44 AC 881 ms
15,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
ll op(ll a,ll b){return gcd(a,b);}
ll e(){return 0ll;}
int main(){
  int n;cin>>n;
  segtree<ll,op,e>sg(n);
  rep(i,n){
    ll a;cin>>a;
    sg.set(i,a);
  }
  ll ans=0;
  auto f=[&](ll a){return a!=1;};
  rep(i,n)ans+=n-sg.max_right(i,f);
  cout<<ans;
}
0