結果
問題 |
No.917 Make One With GCD
|
ユーザー |
![]() |
提出日時 | 2019-10-25 22:23:46 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,156 bytes |
コンパイル時間 | 1,731 ms |
コンパイル使用メモリ | 170,388 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 04:29:40 |
合計ジャッジ時間 | 2,767 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 3 |
other | AC * 6 WA * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rrep(i,n) for(int (i)=((n)-1);(i)>=0;(i)--) #define itn int #define all(x) (x).begin(),(x).end() #define F first #define S second const long long INF = 1LL << 60; const int MOD = 1000000007; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } int gcd(int a,int b) { if (a%b==0) return(b); else return(gcd(b,a%b)); } signed main(void){ int n; cin>>n; vector <int> a(n); rep(i,n) cin>>a[i]; itn ans = 0; for(int i=0;i<n;i++){ if(a[i] == 1) ans++; int back = n - (i+1); //後ろ int cnt = 0; for(int j=i+1;j<n;j++){ if(gcd(a[i], a[j]) == 1){ cnt++; cout<<a[i]<<' '<<a[j]<<endl; cout<<"+= "<<(1LL<< (back - cnt) )<<endl; ans += (1LL<< (back - cnt) ); cout<<"ans: "<<ans<<endl; } } } cout<<ans<<endl; }