結果

問題 No.1146 土偶Ⅰ
ユーザー matriematrie
提出日時 2020-12-19 23:04:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-09-21 10:45:05
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 44 ms
12,032 KB
testcase_04 AC 158 ms
22,016 KB
testcase_05 AC 50 ms
12,544 KB
testcase_06 AC 88 ms
16,256 KB
testcase_07 AC 136 ms
19,712 KB
testcase_08 AC 159 ms
21,888 KB
testcase_09 AC 69 ms
14,208 KB
testcase_10 AC 42 ms
11,648 KB
testcase_11 AC 88 ms
15,616 KB
testcase_12 AC 166 ms
22,272 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 65 ms
14,080 KB
testcase_15 AC 129 ms
19,968 KB
testcase_16 AC 74 ms
15,232 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 30 ms
11,008 KB
testcase_19 AC 66 ms
14,336 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 38 ms
11,648 KB
testcase_22 AC 34 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import itertools
def gcd(a,b,c): return math.gcd(math.gcd(a,b),c)

n=int(input())
l=[int(input()) for _ in [0]*n]
x=list(itertools.combinations(l,3))
c=0
for i in x:
	if gcd(*i)==1: c+=1
print(c)
0