結果

問題 No.1146 土偶Ⅰ
ユーザー roarisroaris
提出日時 2020-08-05 18:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-17 08:24:59
合計ジャッジ時間 2,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 41 ms
58,112 KB
testcase_03 AC 73 ms
75,904 KB
testcase_04 AC 134 ms
75,920 KB
testcase_05 AC 72 ms
76,288 KB
testcase_06 AC 99 ms
75,976 KB
testcase_07 AC 125 ms
76,032 KB
testcase_08 AC 130 ms
76,236 KB
testcase_09 AC 83 ms
76,416 KB
testcase_10 AC 62 ms
75,904 KB
testcase_11 AC 95 ms
76,032 KB
testcase_12 AC 144 ms
76,160 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 83 ms
75,864 KB
testcase_15 AC 117 ms
75,864 KB
testcase_16 AC 90 ms
76,288 KB
testcase_17 AC 40 ms
57,472 KB
testcase_18 AC 48 ms
62,720 KB
testcase_19 AC 84 ms
75,928 KB
testcase_20 AC 46 ms
61,568 KB
testcase_21 AC 59 ms
75,776 KB
testcase_22 AC 53 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a
    
n = int(input())
a = [int(input()) for _ 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 gcd(gcd(a[i], a[j]), a[k])==1:
                ans += 1

print(ans)
0