結果

問題 No.1146 土偶Ⅰ
ユーザー kozykozy
提出日時 2020-08-04 17:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 86,904 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2023-10-12 21:20:35
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,524 KB
testcase_01 AC 71 ms
71,628 KB
testcase_02 AC 72 ms
71,356 KB
testcase_03 AC 84 ms
76,392 KB
testcase_04 AC 115 ms
76,572 KB
testcase_05 AC 85 ms
76,260 KB
testcase_06 AC 96 ms
76,504 KB
testcase_07 AC 109 ms
76,428 KB
testcase_08 AC 114 ms
76,736 KB
testcase_09 AC 90 ms
76,408 KB
testcase_10 AC 84 ms
76,424 KB
testcase_11 AC 97 ms
76,492 KB
testcase_12 AC 115 ms
76,484 KB
testcase_13 AC 72 ms
71,356 KB
testcase_14 AC 90 ms
76,296 KB
testcase_15 AC 109 ms
76,516 KB
testcase_16 AC 94 ms
76,492 KB
testcase_17 AC 72 ms
71,276 KB
testcase_18 AC 79 ms
76,596 KB
testcase_19 AC 92 ms
76,412 KB
testcase_20 AC 76 ms
76,132 KB
testcase_21 AC 82 ms
76,488 KB
testcase_22 AC 80 ms
76,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
ans=0
L=list()
N=int(input())
for i in range(N):
    s=int(input())
    L.append(s)
for i in range(N-2):
    for j in range(i+1,N-1):
        for k in range(j+1,N):
            if math.gcd(math.gcd(L[i],L[j]),L[k])==1:
                ans+=1
print(ans)
0