結果

問題 No.1146 土偶Ⅰ
ユーザー SSRS
提出日時 2020-08-05 18:34:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 168,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-17 08:29:14
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;
	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; i++){
		cin >> a[i];
	}
	int ans = 0;
	for (int i = 0; i < n; i++){
		for (int j = i + 1; j < n; j++){
			for (int k = j + 1; k < n; k++){
				if (__gcd(__gcd(a[i], a[j]), a[k]) == 1){
					ans++;
				}
			}
		}
	}
	cout << ans << endl;
}
0