結果

問題 No.1146 土偶Ⅰ
ユーザー dangodango
提出日時 2023-06-25 08:38:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-07-02 10:59:16
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 45 ms
60,356 KB
testcase_03 AC 155 ms
76,288 KB
testcase_04 AC 187 ms
76,368 KB
testcase_05 AC 99 ms
76,416 KB
testcase_06 AC 172 ms
76,288 KB
testcase_07 AC 164 ms
76,436 KB
testcase_08 AC 230 ms
76,644 KB
testcase_09 AC 125 ms
76,160 KB
testcase_10 AC 99 ms
76,076 KB
testcase_11 AC 200 ms
76,624 KB
testcase_12 AC 245 ms
76,880 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 107 ms
76,032 KB
testcase_15 AC 164 ms
76,288 KB
testcase_16 AC 134 ms
76,288 KB
testcase_17 AC 34 ms
52,480 KB
testcase_18 AC 63 ms
75,648 KB
testcase_19 AC 142 ms
76,188 KB
testcase_20 AC 54 ms
68,480 KB
testcase_21 AC 77 ms
76,036 KB
testcase_22 AC 71 ms
75,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1500000)
def gcd(a, b):
    if b == 0:
        return a
    else:
        return gcd(b, a % b)
a = []
ans = 0
for _ in range(int(input())):
    a.append(int(input()))
for i in range(len(a)):
    for j in range(i + 1, len(a)):
        for k in range(j + 1, len(a)):
            if gcd(gcd(a[i], a[j]), a[k]) == 1:
                ans += 1
print(ans)
0