結果
問題 | No.1146 土偶Ⅰ |
ユーザー | Maboy |
提出日時 | 2023-02-08 14:41:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 416 bytes |
コンパイル時間 | 347 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-07-06 02:51:47 |
合計ジャッジ時間 | 4,803 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,824 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 39 ms
10,752 KB |
testcase_03 | AC | 717 ms
10,752 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
def gcd(l): l = sorted(l)[::-1] while sum([l[x]%l[-1] for x in range(len(l)-1)]): l[0],l[1] = l[1],l[0] % l[1] l = sorted(l)[::-1] if 0 in l: l.pop(l.index(0)) return min(l) n = int(input()) l = [int(input()) for _ in range(n)] v = 0 for a in range(n-2): for b in range(a+1,n-1): for c in range(b+1,n): v += gcd([l[a],l[b],l[c]]) == 1 print(v)