結果

問題 No.1146 土偶Ⅰ
ユーザー nohakai3nohakai3
提出日時 2022-07-19 15:57:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,656 KB
最終ジャッジ日時 2024-07-01 19:01:02
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 58 ms
14,208 KB
testcase_04 AC 250 ms
38,016 KB
testcase_05 AC 64 ms
15,104 KB
testcase_06 AC 132 ms
24,064 KB
testcase_07 AC 208 ms
32,512 KB
testcase_08 AC 248 ms
38,016 KB
testcase_09 AC 94 ms
19,200 KB
testcase_10 AC 50 ms
13,184 KB
testcase_11 AC 121 ms
22,528 KB
testcase_12 AC 252 ms
38,656 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 91 ms
18,688 KB
testcase_15 AC 210 ms
33,152 KB
testcase_16 AC 109 ms
21,120 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 97 ms
19,456 KB
testcase_20 AC 31 ms
11,008 KB
testcase_21 AC 48 ms
13,056 KB
testcase_22 AC 38 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[]
for i in range(n):
    s=int(input())
    l.append(s)

from itertools import combinations
c=list(combinations(l,3))
l2=[]
for x in c:
    x=list(x)
    l2.append(x)

from math import gcd
ans=0
for x in l2:
    if gcd(*x)==1:
        ans+=1
        
print(ans)
0