結果

問題 No.1146 土偶Ⅰ
ユーザー vwxyzvwxyz
提出日時 2022-09-06 18:51:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,704 KB
最終ジャッジ日時 2024-11-21 19:29:03
合計ジャッジ時間 3,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 64 ms
12,288 KB
testcase_04 AC 280 ms
23,204 KB
testcase_05 AC 69 ms
12,544 KB
testcase_06 AC 144 ms
16,804 KB
testcase_07 AC 225 ms
21,840 KB
testcase_08 AC 293 ms
23,192 KB
testcase_09 AC 98 ms
15,136 KB
testcase_10 AC 52 ms
11,904 KB
testcase_11 AC 134 ms
16,164 KB
testcase_12 AC 286 ms
23,704 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 100 ms
15,140 KB
testcase_15 AC 223 ms
21,908 KB
testcase_16 AC 117 ms
15,648 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 35 ms
11,136 KB
testcase_19 AC 104 ms
15,392 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 52 ms
11,904 KB
testcase_22 AC 39 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

N=int(readline())
A=[int(readline()) for n in range(N)]
se=set()
for i in range(N):
    for j in range(i+1,N):
        for k in range(j+1,N):
            if GCD(A[i],A[j],A[k])==1:
                se.add(tuple(sorted([A[i],A[j],A[k]])))
ans=len(se)
print(ans)
0