結果
| 問題 | No.1146 土偶Ⅰ |
| ユーザー |
brthyyjp
|
| 提出日時 | 2020-12-21 07:07:48 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 85 ms / 2,000 ms |
| コード長 | 332 bytes |
| 記録 | |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 81,280 KB |
| 最終ジャッジ日時 | 2026-04-09 18:12:01 |
| 合計ジャッジ時間 | 3,313 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
n = int(input())
A = [int(input()) for i in range(n)]
import math
from functools import reduce
def gcd(*numbers):
return reduce(math.gcd, numbers)
def gcd_list(numbers):
return reduce(math.gcd, numbers)
import itertools
ans = 0
for c in itertools.combinations(A, 3):
if gcd_list(c) == 1:
ans += 1
print(ans)
brthyyjp