結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 60 ms
12,288 KB
testcase_04 AC 281 ms
23,068 KB
testcase_05 AC 69 ms
12,544 KB
testcase_06 AC 143 ms
16,676 KB
testcase_07 AC 229 ms
21,716 KB
testcase_08 AC 279 ms
23,316 KB
testcase_09 AC 100 ms
15,136 KB
testcase_10 AC 51 ms
11,776 KB
testcase_11 AC 128 ms
16,164 KB
testcase_12 AC 297 ms
23,700 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 101 ms
15,264 KB
testcase_15 AC 219 ms
21,792 KB
testcase_16 AC 116 ms
15,520 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 35 ms
11,008 KB
testcase_19 AC 107 ms
15,396 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 50 ms
11,776 KB
testcase_22 AC 40 ms
11,136 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