結果

問題 No.1146 土偶Ⅰ
ユーザー wolgnikwolgnik
提出日時 2020-08-05 21:12:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 68,208 KB
最終ジャッジ日時 2024-09-17 12:12:58
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,412 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 38 ms
53,388 KB
testcase_03 AC 45 ms
61,104 KB
testcase_04 AC 78 ms
68,148 KB
testcase_05 AC 46 ms
60,696 KB
testcase_06 AC 59 ms
64,272 KB
testcase_07 AC 73 ms
67,408 KB
testcase_08 AC 78 ms
68,168 KB
testcase_09 AC 52 ms
62,140 KB
testcase_10 AC 45 ms
61,572 KB
testcase_11 AC 59 ms
63,396 KB
testcase_12 AC 83 ms
68,208 KB
testcase_13 AC 38 ms
52,876 KB
testcase_14 AC 55 ms
62,676 KB
testcase_15 AC 72 ms
67,300 KB
testcase_16 AC 55 ms
62,584 KB
testcase_17 AC 34 ms
52,588 KB
testcase_18 AC 39 ms
58,816 KB
testcase_19 AC 53 ms
63,776 KB
testcase_20 AC 39 ms
58,688 KB
testcase_21 AC 44 ms
60,508 KB
testcase_22 AC 43 ms
61,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations as combi
from math import gcd
input = sys.stdin.readline
N = int(input())
a = [int(input()) for _ in range(N)]
res = 0
for c in combi(a, 3): res += gcd(gcd(c[0], c[1]), c[2]) == 1
print(res)
0