結果

問題 No.1146 土偶Ⅰ
ユーザー ohanaohana
提出日時 2023-11-06 16:35:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,276 KB
最終ジャッジ日時 2024-09-25 23:04:24
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 57 ms
64,640 KB
testcase_04 AC 107 ms
76,032 KB
testcase_05 AC 63 ms
65,024 KB
testcase_06 AC 83 ms
70,784 KB
testcase_07 AC 109 ms
75,904 KB
testcase_08 AC 117 ms
76,276 KB
testcase_09 AC 74 ms
67,712 KB
testcase_10 AC 55 ms
62,336 KB
testcase_11 AC 80 ms
69,760 KB
testcase_12 AC 115 ms
76,016 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 71 ms
67,456 KB
testcase_15 AC 101 ms
75,972 KB
testcase_16 AC 70 ms
69,376 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 46 ms
60,416 KB
testcase_19 AC 68 ms
68,480 KB
testcase_20 AC 44 ms
59,008 KB
testcase_21 AC 52 ms
62,208 KB
testcase_22 AC 50 ms
61,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

A = [int(input()) for i in range(n)]
ans = 0
for i in range(n):
    for j in range(i + 1, n):
        for k in range(j + 1, n):
            if math.gcd(A[i], A[j], A[k]) == 1:
                ans += 1

print(ans)
0