結果

問題 No.1146 土偶Ⅰ
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-21 07:07:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-21 12:41:16
合計ジャッジ時間 3,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,168 KB
testcase_01 AC 52 ms
54,784 KB
testcase_02 AC 51 ms
55,296 KB
testcase_03 AC 79 ms
76,544 KB
testcase_04 AC 126 ms
76,544 KB
testcase_05 AC 83 ms
76,544 KB
testcase_06 AC 103 ms
76,416 KB
testcase_07 AC 116 ms
76,416 KB
testcase_08 AC 126 ms
76,160 KB
testcase_09 AC 90 ms
76,800 KB
testcase_10 AC 78 ms
76,416 KB
testcase_11 AC 97 ms
76,160 KB
testcase_12 AC 129 ms
76,160 KB
testcase_13 AC 55 ms
54,784 KB
testcase_14 AC 98 ms
76,416 KB
testcase_15 AC 127 ms
76,672 KB
testcase_16 AC 104 ms
76,032 KB
testcase_17 AC 55 ms
54,912 KB
testcase_18 AC 63 ms
64,256 KB
testcase_19 AC 99 ms
76,288 KB
testcase_20 AC 64 ms
63,488 KB
testcase_21 AC 73 ms
73,856 KB
testcase_22 AC 67 ms
68,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [int(input()) for i in range(n)]

import math
from functools import reduce

def gcd(*numbers):
    return reduce(math.gcd, numbers)

def gcd_list(numbers):
    return reduce(math.gcd, numbers)

import itertools
ans = 0
for c in itertools.combinations(A, 3):
    if gcd_list(c) == 1:
        ans += 1
print(ans)
0