結果

問題 No.1146 土偶Ⅰ
ユーザー hiragnhiragn
提出日時 2022-11-22 16:44:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-09-23 02:25:59
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 41 ms
12,032 KB
testcase_04 AC 123 ms
20,224 KB
testcase_05 AC 44 ms
12,032 KB
testcase_06 AC 74 ms
15,360 KB
testcase_07 AC 106 ms
17,920 KB
testcase_08 AC 121 ms
20,352 KB
testcase_09 AC 57 ms
13,568 KB
testcase_10 AC 38 ms
11,648 KB
testcase_11 AC 69 ms
14,592 KB
testcase_12 AC 124 ms
20,992 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 56 ms
13,696 KB
testcase_15 AC 104 ms
17,664 KB
testcase_16 AC 63 ms
14,208 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 59 ms
13,696 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 37 ms
11,520 KB
testcase_22 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
import math


def main():
    n = int(input())
    lst = [int(input()) for _ in range(n)]

    ans = len([xyz for xyz in combinations(lst, 3) if math.gcd(*xyz) == 1])
    print(ans)


if __name__ == "__main__":
    main()
0