結果

問題 No.1146 土偶Ⅰ
ユーザー zyxwzyxw
提出日時 2021-02-02 21:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 86,804 KB
実行使用メモリ 76,688 KB
最終ジャッジ日時 2023-09-12 11:25:56
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,380 KB
testcase_01 AC 71 ms
71,120 KB
testcase_02 AC 71 ms
71,120 KB
testcase_03 AC 81 ms
76,632 KB
testcase_04 AC 94 ms
76,504 KB
testcase_05 AC 83 ms
76,588 KB
testcase_06 AC 87 ms
76,556 KB
testcase_07 AC 97 ms
76,612 KB
testcase_08 AC 96 ms
76,484 KB
testcase_09 AC 89 ms
76,388 KB
testcase_10 AC 82 ms
76,472 KB
testcase_11 AC 89 ms
76,444 KB
testcase_12 AC 96 ms
76,492 KB
testcase_13 AC 72 ms
71,524 KB
testcase_14 AC 86 ms
76,548 KB
testcase_15 AC 94 ms
76,688 KB
testcase_16 AC 89 ms
76,536 KB
testcase_17 AC 72 ms
71,272 KB
testcase_18 AC 70 ms
71,268 KB
testcase_19 AC 87 ms
76,532 KB
testcase_20 AC 72 ms
71,556 KB
testcase_21 AC 81 ms
76,236 KB
testcase_22 AC 79 ms
76,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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