結果

問題 No.1146 土偶Ⅰ
ユーザー masayamatumasayamatu
提出日時 2020-11-24 23:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 97,412 KB
最終ジャッジ日時 2024-07-23 18:53:30
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,308 KB
testcase_01 AC 45 ms
55,660 KB
testcase_02 AC 46 ms
56,280 KB
testcase_03 AC 73 ms
78,464 KB
testcase_04 AC 144 ms
96,892 KB
testcase_05 AC 76 ms
79,220 KB
testcase_06 AC 103 ms
86,100 KB
testcase_07 AC 127 ms
92,704 KB
testcase_08 AC 144 ms
97,012 KB
testcase_09 AC 86 ms
82,120 KB
testcase_10 AC 70 ms
77,740 KB
testcase_11 AC 97 ms
84,932 KB
testcase_12 AC 145 ms
97,412 KB
testcase_13 AC 45 ms
55,196 KB
testcase_14 AC 85 ms
82,004 KB
testcase_15 AC 131 ms
92,936 KB
testcase_16 AC 95 ms
83,904 KB
testcase_17 AC 46 ms
56,292 KB
testcase_18 AC 57 ms
66,288 KB
testcase_19 AC 88 ms
82,232 KB
testcase_20 AC 57 ms
64,852 KB
testcase_21 AC 71 ms
77,544 KB
testcase_22 AC 61 ms
70,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import math
from functools import reduce


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

n = int(input())

a = []

count = 0

for i in range(n):
    a.append(int(input()))

combinate_a=list(itertools.combinations(a,3))

for i in range(len(combinate_a)):
    if gcd(combinate_a[i][0],combinate_a[i][1],combinate_a[i][2]) == 1:
        count += 1

print(count)
0