結果

問題 No.1146 土偶Ⅰ
ユーザー rlangevinrlangevin
提出日時 2024-09-11 08:53:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,832 KB
最終ジャッジ日時 2024-09-11 08:53:44
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 31 ms
51,968 KB
testcase_02 AC 55 ms
52,096 KB
testcase_03 AC 50 ms
64,512 KB
testcase_04 AC 91 ms
75,648 KB
testcase_05 AC 48 ms
65,152 KB
testcase_06 AC 63 ms
70,784 KB
testcase_07 AC 83 ms
75,648 KB
testcase_08 AC 107 ms
75,776 KB
testcase_09 AC 57 ms
67,968 KB
testcase_10 AC 56 ms
61,952 KB
testcase_11 AC 80 ms
70,272 KB
testcase_12 AC 90 ms
75,832 KB
testcase_13 AC 33 ms
52,352 KB
testcase_14 AC 56 ms
67,456 KB
testcase_15 AC 84 ms
75,648 KB
testcase_16 AC 61 ms
69,760 KB
testcase_17 AC 33 ms
52,352 KB
testcase_18 AC 39 ms
59,776 KB
testcase_19 AC 56 ms
68,096 KB
testcase_20 AC 37 ms
58,112 KB
testcase_21 AC 43 ms
61,824 KB
testcase_22 AC 41 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

n = int(input())
A = [0] * n
for i in range(n):
    A[i] = int(input())
    
ans = 0
for a in range(n):
    for b in range(a + 1, n):
        for c in range(b + 1, n):
            if gcd(gcd(A[a], A[b], A[c])) == 1:
                ans += 1
                
print(ans)
    
0