結果

問題 No.1146 土偶Ⅰ
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-08-03 19:46:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 175,760 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-08-03 19:46:17
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 74 ms
11,648 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 35 ms
7,296 KB
testcase_07 AC 59 ms
9,856 KB
testcase_08 AC 75 ms
11,904 KB
testcase_09 AC 21 ms
5,888 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 29 ms
7,040 KB
testcase_12 AC 77 ms
12,160 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 22 ms
5,888 KB
testcase_15 AC 61 ms
9,472 KB
testcase_16 AC 27 ms
6,144 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 23 ms
6,144 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

int gcd(int a, int b){
    return a % b ? gcd(b, a % b) : b;
}

int gcd3(int a, int b, int c){
    return gcd(gcd(a, b), c);
}

int main(){
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i, 0, n) cin >> a[i];

    set<array<int, 3>> st;
    rep(i, 0, n) rep(j, i+1, n) rep(k, j+1, n){
        int A = a[i], B = a[j], C = a[k];
        if(gcd3(A, B, C) == 1){
            array<int, 3> arr = {A, B, C};
            sort(arr.begin(), arr.end());
            st.insert(arr);
        }
    }

    cout << st.size() << endl;
    return 0;
}
0