結果

問題 No.1036 Make One With GCD 2
ユーザー fumofumofuni
提出日時 2021-07-28 15:23:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,268 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 201,552 KB
最終ジャッジ日時 2025-01-23 09:52:55
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 40 TLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:39:19: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘ll*’ {aka ‘long long int*’} [-Wformat=]
   39 |     ll a;scanf("%ld",&a);
      |                 ~~^  ~~
      |                   |  |
      |                   |  ll* {aka long long int*}
      |                   long int*
      |                 %lld
main.cpp:39:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |     ll a;scanf("%ld",&a);
      |          ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9;
const ll INF=4e18;
const ll dy[8]={1,0,-1,0,0,1,-1,-1};
const ll dx[8]={0,1,0,-1,0,-1,1,-1};
template <typename T> inline bool chmax(T &a, T b) {
  return ((a < b) ? (a = b, true) : (false));
}
template <typename T> inline bool chmin(T &a, T b) {
  return ((a > b) ? (a = b, true) : (false));
}
int main(){
  ll ans=0;
  ll n;cin >> n;
  unordered_map<ll,ll> now;
  ll last=0;
  rep(i,n){
    ll a;scanf("%ld",&a);
    unordered_map<ll,ll> np;
    ll t=gcd(last,a);
    for(auto p:now){
      np[gcd(p.fi,t)]+=p.se;
    }
    np[a]++;
    ans+=np[1];
    swap(np,now);
    last=a;
  }
  cout << ans <<endl;
}
0