結果

問題 No.917 Make One With GCD
ユーザー Ogtsn99Ogtsn99
提出日時 2019-10-25 22:23:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,156 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 168,460 KB
実行使用メモリ 4,480 KB
最終ジャッジ日時 2023-10-11 05:11:58
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,348 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,348 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
4,352 KB
testcase_30 WA -
testcase_31 AC 1 ms
4,348 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 2 ms
4,352 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0